33 lines
706 B
Text
33 lines
706 B
Text
server {
|
|
listen 8080;
|
|
server_name _;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/v1/ {
|
|
proxy_pass http://${CLUSTER_API_UPSTREAM};
|
|
proxy_connect_timeout 1s;
|
|
proxy_read_timeout 5s;
|
|
proxy_send_timeout 5s;
|
|
}
|
|
|
|
location = /healthz {
|
|
proxy_pass http://${CLUSTER_API_UPSTREAM};
|
|
proxy_connect_timeout 1s;
|
|
proxy_read_timeout 5s;
|
|
proxy_send_timeout 5s;
|
|
}
|
|
|
|
location = /readyz {
|
|
proxy_pass http://${CLUSTER_API_UPSTREAM};
|
|
proxy_connect_timeout 1s;
|
|
proxy_read_timeout 5s;
|
|
proxy_send_timeout 5s;
|
|
}
|
|
|
|
}
|