feat: move listen 443 to strem to enable true ssl passthrough

This commit is contained in:
2024-02-21 12:20:51 +00:00
parent 860bd22f7a
commit ba86d5c482
4 changed files with 44 additions and 2 deletions

4
vm.py
View File

@@ -129,6 +129,10 @@ class VM:
for subdomain in self.subdomains:
if subdomain.get("no-terminate-ssl"):
print("Not terminating TLS for: {}".format(subdomain))
continue
if type(subdomain) != dict:
raise ValueError("Subdomain must be object containing 'name' ")