From b0a4fa5fa2166f81e51757d6735205b3c5a45532 Mon Sep 17 00:00:00 2001 From: Andrii Bratanin Date: Thu, 2 Nov 2023 01:58:46 +0200 Subject: [PATCH] nginx.conf - change listen port from 80 to 8080 --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 1a30e15e..b305898b 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,5 +1,5 @@ server { - listen 80; + listen 8080; server_name localhost; root /usr/share/nginx/html; index index.html; @@ -7,4 +7,4 @@ server { location / { try_files $uri $uri/ /index.html; } -} \ No newline at end of file +}