runtime/examples/default/nginx.conf

11 lines
116 B
Nginx Configuration File
Raw Normal View History

2022-05-02 11:57:24 +00:00
server {
listen 8000;
root /srv/app/;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}