2024-10-30 02:04:53 +05:30
|
|
|
server {
|
|
|
|
|
listen 80;
|
2025-04-26 15:55:40 +05:30
|
|
|
server_name _;
|
2024-10-31 14:46:33 +05:30
|
|
|
|
2025-04-26 15:56:40 +05:30
|
|
|
root /var/www/maxun;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
|
|
|
|
# Serve the frontend
|
2024-10-30 02:04:53 +05:30
|
|
|
location / {
|
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
}
|
2025-04-26 15:58:00 +05:30
|
|
|
|
|
|
|
|
# Proxy for backend
|
2025-04-26 17:11:31 +05:30
|
|
|
location ^/(auth|storage|record|workflow|robot|proxy|api-docs|api)(/|$) {
|
2025-04-26 15:59:01 +05:30
|
|
|
proxy_pass http://localhost:8080; # change as per your setup
|
2024-10-31 14:46:33 +05:30
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
|
proxy_set_header Connection 'upgrade';
|
|
|
|
|
proxy_set_header Host $host;
|
2025-04-26 15:59:01 +05:30
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
2025-04-26 17:11:15 +05:30
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2025-04-26 15:59:01 +05:30
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
2024-10-31 14:46:33 +05:30
|
|
|
}
|
2025-04-26 15:55:40 +05:30
|
|
|
}
|