mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 02:25:17 +00:00
20 lines
392 B
Nginx Configuration File
20 lines
392 B
Nginx Configuration File
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html =404;
|
|
}
|
|
|
|
location /v1 {
|
|
proxy_pass http://dominant:8022;
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|