jsoncrack.com/default.conf

18 lines
286 B
Plaintext
Raw Normal View History

2022-08-16 17:23:13 +03:00
server {
listen 8080;
root /app;
include /etc/nginx/mime.types;
location /editor {
try_files $uri /editor.html;
}
2022-12-05 13:53:48 +00:00
location /widget {
try_files $uri /widget.html;
}
location /embed {
try_files $uri /embed.html;
}
2022-08-16 17:23:13 +03:00
}