hardcode nginx listen port to 80
This commit is contained in:
parent
33978b8203
commit
3f15df4808
|
@ -11,7 +11,7 @@ http {
|
|||
types_hash_max_size 2048;
|
||||
include mime.types;
|
||||
server {
|
||||
listen {{ $.PORT }};
|
||||
listen 80;
|
||||
server_name _;
|
||||
{{ if ne $.NGINX_ROOT "" }}
|
||||
root /app/www/{{ $.NGINX_ROOT }};
|
||||
|
|
Reference in New Issue