38 lines
668 B
Text
38 lines
668 B
Text
worker_processes 1;
|
|
error_log stderr;
|
|
pid nginx.pid;
|
|
daemon off;
|
|
|
|
events {
|
|
worker_connections 768;
|
|
}
|
|
|
|
http {
|
|
types_hash_max_size 2048;
|
|
include mime.types;
|
|
charset UTF-8;
|
|
server {
|
|
listen {{ $.PORT }};
|
|
server_name _;
|
|
{{ if ne $.NGINX_ROOT "" }}
|
|
root /app/www/{{ $.NGINX_ROOT }};
|
|
{{ else }}
|
|
root /app/www;
|
|
{{ end }}
|
|
index index.html;
|
|
port_in_redirect off;
|
|
|
|
location /now {
|
|
try_files /now.html =404;
|
|
}
|
|
|
|
location / {
|
|
{{ if ne $.NGINX_DEFAULT_REQUEST "" }}
|
|
try_files $uri $uri/ /{{ $.NGINX_DEFAULT_REQUEST }};
|
|
{{ else }}
|
|
try_files $uri $uri/ =404;
|
|
{{ end }}
|
|
}
|
|
|
|
}
|
|
}
|