fix: set nginx port to 80 to resolve variable substitution error
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user