Update nginx.conf to listen on port 8080 instead of port 80

This commit is contained in:
Dede Fuji Abdul 2024-01-13 13:02:27 +07:00
parent d2f6ca0ad3
commit 69235b374d

View File

@ -30,8 +30,8 @@ http {
#include /etc/nginx/conf.d/*.conf; #include /etc/nginx/conf.d/*.conf;
server { server {
listen 80; listen 8080;
listen [::]:80; listen [::]:8080;
server_name localhost; server_name localhost;
#access_log /var/log/nginx/host.access.log main; #access_log /var/log/nginx/host.access.log main;