30 lines
593 B
Plaintext
30 lines
593 B
Plaintext
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name localhost;
|
||
|
|
|
||
|
|
root /usr/share/nginx/html;
|
||
|
|
index index.html;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
try_files $uri $uri/ /index.html;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Proxy API requests
|
||
|
|
location /api/v1/ {
|
||
|
|
proxy_pass http://${OVP_API_HOST}:${OVP_API_PORT};
|
||
|
|
}
|
||
|
|
|
||
|
|
location /api/auth {
|
||
|
|
proxy_pass http://${OVP_API_HOST}:${OVP_API_PORT};
|
||
|
|
}
|
||
|
|
|
||
|
|
location /api/ {
|
||
|
|
proxy_pass http://${OVP_PROFILER_HOST}:${OVP_PROFILER_PORT};
|
||
|
|
}
|
||
|
|
|
||
|
|
error_page 500 502 503 504 /50x.html;
|
||
|
|
location = /50x.html {
|
||
|
|
root /usr/share/nginx/html;
|
||
|
|
}
|
||
|
|
}
|