mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-12 19:02:53 +08:00
18 lines
280 B
Nginx Configuration File
18 lines
280 B
Nginx Configuration File
server {
|
|
listen 8080;
|
|
root /app;
|
|
include /etc/nginx/mime.types;
|
|
|
|
location /editor {
|
|
try_files $uri /editor.html;
|
|
}
|
|
|
|
location /widget {
|
|
try_files $uri /widget.html;
|
|
}
|
|
|
|
location /docs {
|
|
try_files $uri /docs.html;
|
|
}
|
|
}
|