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 { server {
listen 80; listen 80;
server_name localhost; server_name _;
root /usr/share/nginx/html; root /app;
index index.html; index index.html;
# GZIP Compression # GZIP Compression

View File

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