From ceb4031b7647de742be078918085732783fad78d Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Fri, 21 Feb 2020 16:46:33 -0600 Subject: [service https] T1443: bug: set HTTPS listen port for listen-address '*' --- src/conf_mode/https.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/conf_mode/https.py') diff --git a/src/conf_mode/https.py b/src/conf_mode/https.py index 5d90b2b53..d8e78c6cd 100755 --- a/src/conf_mode/https.py +++ b/src/conf_mode/https.py @@ -47,8 +47,8 @@ server { # SSL configuration # {% if server.address == '*' %} - listen 443 ssl; - listen [::]:443 ssl; + listen {{ server.port }} ssl; + listen [::]:{{ server.port }} ssl; {% else %} listen {{ server.address }}:{{ server.port }} ssl; {% endif %} -- cgit v1.2.3