From 22a452410b8ca971be4ef7242727dd9a41994ae5 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 21 Jul 2022 17:31:48 +0200 Subject: [PATCH] chore(docker): change nginx listen port to 8080 Signed-off-by: rjshrjndrn --- frontend/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/nginx.conf b/frontend/nginx.conf index 499065087..0138027f0 100644 --- a/frontend/nginx.conf +++ b/frontend/nginx.conf @@ -1,6 +1,6 @@ server { - listen 80 default_server; - listen [::]:80 default_server; + listen 8080 default_server; + listen [::]:8080 default_server; root /var/www/openreplay; index index.html; location / {