1234567891011121314151617181920212223242526272829303132333435363738394041 |
- worker_processes 1;
- events {
- worker_connections 1024;
- }
- http {
- include mime.types;
- default_type application/octet-stream;
- sendfile on;
- keepalive_timeout 65;
- server {
- listen 80;
- server_name localhost;
- location / {
- root /home/ruoyi/projects/ruoyi-ui;
- try_files $uri $uri/ /index.html;
- index index.html index.htm;
- }
- location /prod-api/ws {
- proxy_pass http://200.200.19.254:31280;
- proxy_http_version 1.1;
- proxy_set_header Upgrade $http_upgrade;
- proxy_set_header Connection "Upgrade";
- }
- location /prod-api {
- proxy_pass http://200.200.19.254:31280;
- }
- location ~ ^/prod-bd-api/(.*)$ {
- proxy_pass http://200.200.19.253:31838/bdgis/$1;
- }
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root html;
- }
- }
- }
|