jsoncrack.com/nginx.conf

18 lines
280 B
Nginx Configuration File
Raw Permalink 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;
}
2023-07-23 13:38:32 +03:00
location /docs {
try_files $uri /docs.html;
}
2022-08-16 17:23:13 +03:00
}