hardcode nginx listen port to 80

This commit is contained in:
Ray Elliott 2020-05-03 16:17:42 +01:00
parent 33978b8203
commit 3f15df4808
1 changed files with 1 additions and 1 deletions

View File

@ -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 }};