server { listen 8080; server_name _; root /usr/share/nginx/html; index index.html; location /v1/ { proxy_pass ${ORCHESTRA_API_UPSTREAM}; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } location /metrics { proxy_pass ${ORCHESTRA_API_UPSTREAM}; } location /healthz { proxy_pass ${ORCHESTRA_API_UPSTREAM}; } location /readyz { proxy_pass ${ORCHESTRA_API_UPSTREAM}; } location / { try_files $uri $uri/ /index.html; } }