1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- worker_processes 1;
- events {
- worker_connections 1024;
- }
- http {
- include mime.types;
- default_type application/octet-stream;
- sendfile on;
- keepalive_timeout 65;
- client_max_body_size 50m;
- server {
- listen 80;
- server_name 192.168.10.40;
- # ssl_certificate /home/nginx/html/dms/ssl/www.dljpwx.com.crt;
- # ssl_certificate_key /home/nginx/html/dms/ssl/www.dljpwx.com.key;
- # ssl_session_cache shared:SSL:1m;
- # ssl_ciphers HIGH:!aNULL:!MD5;
- # ssl_prefer_server_ciphers on;
-
- location / {
- root /home/nginx/html/dms/dist;
- try_files $uri $uri/ /index.html;
- index index.html index.htm;
- }
- # location /obs/ {
- # proxy_pass http://node472.com/;
- # }
- location /ezhizao-dms-sys/{
- proxy_set_header Host $http_host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header REMOTE-HOST $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_pass http://192.168.10.40:8060/;
- }
- location /ezhizao-dms-p2/{
- proxy_set_header Host $http_host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header REMOTE-HOST $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_pass http://192.168.10.40:8061/;
- }
- location /ezhizao-dms-production/{
- proxy_set_header Host $http_host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header REMOTE-HOST $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_pass http://192.168.10.40:8062/;
- }
- location /ezhizao-dms-app/{
- proxy_set_header Host $http_host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header REMOTE-HOST $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_pass http://192.168.10.40:8063/;
- }
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root html;
- }
- }
- }
|