You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
634 B
39 lines
634 B
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;
|
|
}
|
|
}
|