From 0f123651fb3ee253ff5535be731d272a75f8235b Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Fri, 19 May 2023 20:16:33 +0200 Subject: [PATCH] Changed port nginx runs at 4000 -> 80 --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 36cbdc5..79b77a8 100644 --- a/nginx.conf +++ b/nginx.conf @@ -30,8 +30,8 @@ http { gzip_types text/html text/plain text/css text/xml text/javascript application/javascript application/xml; server { - listen 4000; - listen [::]:4000; + listen 80; + listen [::]:80; server_name localhost; #access_log /var/log/nginx/host.access.log main;