mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-12 19:02:53 +08:00
39 lines
634 B
Plaintext
39 lines
634 B
Plaintext
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 /embed {
|
|
try_files $uri /embed.html;
|
|
}
|
|
|
|
|
|
location /docs {
|
|
try_files $uri /docs.html;
|
|
}
|
|
|
|
location /oss {
|
|
try_files $uri /oss.html;
|
|
}
|
|
|
|
location /pricing {
|
|
try_files $uri /pricing.html;
|
|
}
|
|
|
|
location /forgot-password {
|
|
try_files $uri /forgot-password.html;
|
|
}
|
|
|
|
location /sign-in {
|
|
try_files $uri /sign-in.html;
|
|
}
|
|
}
|