fix: set nginx port to 80 to resolve variable substitution error

This commit is contained in:
mstfyldz
2026-05-04 23:29:43 +03:00
parent c463c82410
commit 21b4188511
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
server_name _;
root /app;
index index.html;
# GZIP Compression

View File

@@ -1,5 +1,5 @@
server {
listen ${PORT};
listen 80;
server_name _;
root /app;
index index.php index.html index.htm;