From 69235b374d0d08f1d7935230f53fe042e5a37d20 Mon Sep 17 00:00:00 2001 From: Dede Fuji Abdul Date: Sat, 13 Jan 2024 13:02:27 +0700 Subject: [PATCH] Update nginx.conf to listen on port 8080 instead of port 80 --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 7de4a0c..fa50e49 100644 --- a/nginx.conf +++ b/nginx.conf @@ -30,8 +30,8 @@ http { #include /etc/nginx/conf.d/*.conf; server { - listen 80; - listen [::]:80; + listen 8080; + listen [::]:8080; server_name localhost; #access_log /var/log/nginx/host.access.log main;