runtime/examples/default/nginx.conf

11 lines
116 B
Nginx Configuration File

server {
listen 8000;
root /srv/app/;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}