Files
dokku/docs/_build/app-nginx.conf.sigil

27 lines
406 B
Plaintext
Raw Normal View History

2022-09-05 19:03:56 -04:00
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 _;
2022-09-05 20:24:57 -04:00
root /app/www;
2022-09-05 19:03:56 -04:00
index index.html;
port_in_redirect off;
include /app/www/nginx.conf.d/*.conf;
location / {
2022-09-05 20:24:57 -04:00
try_files $uri $uri/ =404;
2022-09-05 19:03:56 -04:00
}
}
}