1
0
Files
build.ems/linux/usr/local/etc/omc/nginx/omc-http.conf
2025-07-22 18:54:42 +08:00

50 lines
1.4 KiB
Plaintext

upstream lbHTTPByOMC {
server 127.0.0.1:33030 max_fails=3 fail_timeout=30s;
#server 127.0.0.2:33030 max_fails=3 fail_timeout=30s;
}
server {
listen 80;
listen [::]:80;
server_name www.omc.local;
client_max_body_size 100M;
keepalive_timeout 180s;
# access_log /var/log/nginx/host.access.log main;
location / {
root /usr/local/etc/omc/web;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
location /omc-api/ {
proxy_cache_bypass $http_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
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;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_connect_timeout 180s;
proxy_send_timeout 180s;
proxy_read_timeout 180s;
proxy_pass http://lbHTTPByOMC/;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
return 301 http://$host$request_uri;
}
}