buildpack-nginx/conf/app-nginx.conf.sigil

30 lines
474 B
Plaintext
Raw Normal View History

2013-08-17 06:41:19 +00:00
worker_processes 1;
2013-08-18 02:53:44 +00:00
error_log stderr;
2013-08-17 06:41:19 +00:00
pid nginx.pid;
daemon off;
events {
2014-11-06 22:29:41 +00:00
worker_connections 768;
2014-06-20 17:37:51 +00:00
}
2013-08-17 06:41:19 +00:00
http {
2014-11-06 22:29:41 +00:00
types_hash_max_size 2048;
include mime.types;
charset UTF-8;
2014-11-06 22:29:41 +00:00
server {
listen {{ $.PORT }};
2014-11-06 22:29:41 +00:00
server_name _;
{{ if ne $.NGINX_ROOT "" }}
root /app/www/{{ $.NGINX_ROOT }};
{{ else }}
2015-10-06 00:03:08 +00:00
root /app/www;
{{ end }}
2014-11-06 22:29:41 +00:00
index index.html;
port_in_redirect off;
location / {
try_files $uri $uri/ /index.html;
}
2014-11-06 22:29:41 +00:00
}
2014-06-20 17:37:51 +00:00
}