From d42d7044bbe072703627773c94296ea5f4e3c1f7 Mon Sep 17 00:00:00 2001 From: girst Date: Fri, 15 Oct 2021 04:37:31 +0200 Subject: [PATCH] listen on port 8080 by default to encourage reverse-proxying --- config/gunicorn-frontend-config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/gunicorn-frontend-config.py b/config/gunicorn-frontend-config.py index 1611a15..b9f2c72 100644 --- a/config/gunicorn-frontend-config.py +++ b/config/gunicorn-frontend-config.py @@ -1,5 +1,5 @@ -# by default, we listen on port 80, without HTTPS! -bind = ['0.0.0.0:80'] +# by default, we listen on port 8080, without HTTPS! +bind = ['0.0.0.0:8080'] # either use this software behind a reverse proxy, or # configure TLS and use subscriptions-port80.service: #bind = ['0.0.0.0:443'] -- 2.39.3