1234567891011121314151617181920212223242526272829303132 |
- upstream bi {
- server 127.0.0.1:12399;
- }
- server {
- listen 80;
- server_name bi.pacsonline.cn;
- access_log /data/logs/nginx/bi/access.log;
- error_log /data/logs/nginx/bi/error.log;
- index index.html index.htm;
- root /data/www/bi;
- location /api/ {
- proxy_pass http://bi/;
- }
- #rewrite ^(.*)$ https://${server_name}$1 permanent;
- }
- server {
- listen 1443;
- server_name bi.pacsonline.cn;
- access_log /data/logs/nginx/bi/access.log;
- error_log /data/logs/nginx/bi/error.log;
- index index.html index.htm;
- root /data/www/bi;
- location /api/ {
- proxy_pass http://bi/;
- }
- }
|