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

View File

@@ -2,8 +2,8 @@ server{
# {{ comment }}
listen 443 ssl;
listen [::]:443 ssl;
listen 10443 ssl;
listen [::]:10443 ssl;
{% if servernames %}server_name{% for s in servernames %} {{ s }}{% endfor %};{% endif %}