26 lines
808 B
Nginx Configuration File
26 lines
808 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
# Serve the React App
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
# Force Nginx to pass routing back to React Router
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Proxy /hasura to the live API, exactly like Vite dev server does
|
|
location /hasura/ {
|
|
proxy_pass https://api.workolik.com/api/rest/;
|
|
proxy_set_header x-hasura-admin-secret "${HASURA_ADMIN_SECRET}";
|
|
proxy_ssl_server_name on;
|
|
|
|
# Pass standard proxy headers
|
|
proxy_set_header Host api.workolik.com;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
}
|