From e521aeba766cc6ca1bf70b8fdb270ac922432454 Mon Sep 17 00:00:00 2001 From: 3n8 <23587580+3n8@users.noreply.github.com> Date: Tue, 19 Jan 2021 09:42:17 +0100 Subject: [PATCH] Update nginx.conf Fixed the incorrect port, added a comment --- root/defaults/nginx.conf | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/root/defaults/nginx.conf b/root/defaults/nginx.conf index ad03270..b5a7d68 100644 --- a/root/defaults/nginx.conf +++ b/root/defaults/nginx.conf @@ -118,16 +118,19 @@ http { # } #} + +# # Enable this to forward a non http/ssl port +# # In this example the znc irc port #stream { # # upstream znc { -# server znc:6502; +# server znc:6501; # } # # server { # -# listen 6502 ssl; -# listen [::]:6502 ssl; +# listen 6501 ssl; +# listen [::]:6501 ssl; # # # Certificates # ssl_certificate /config/keys/letsencrypt/fullchain.pem;