From 21b418851137999e48293991e2ad6df84284d94e Mon Sep 17 00:00:00 2001 From: mstfyldz Date: Mon, 4 May 2026 23:29:43 +0300 Subject: [PATCH] fix: set nginx port to 80 to resolve variable substitution error --- nginx.conf | 4 ++-- nginx.template.conf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nginx.conf b/nginx.conf index bee9f61..ead938c 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,7 +1,7 @@ server { listen 80; - server_name localhost; - root /usr/share/nginx/html; + server_name _; + root /app; index index.html; # GZIP Compression diff --git a/nginx.template.conf b/nginx.template.conf index ecbe88e..f6eb8d8 100644 --- a/nginx.template.conf +++ b/nginx.template.conf @@ -1,5 +1,5 @@ server { - listen ${PORT}; + listen 80; server_name _; root /app; index index.php index.html index.htm;