123456789101112131415161718192021222324252627282930313233343536373839404142 |
- server {
- listen 80;
- listen 443 ssl http2;
- #ssl on;
- ssl_certificate ssl/xinyuepp.cn.pem;
- ssl_certificate_key ssl/xinyuepp.cn.key;
- ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
- ssl_ciphers HIGH:!RC4:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!EXP:+MEDIUM;
- ssl_prefer_server_ciphers on;
- ssl_session_timeout 5m;
- add_header Access-Control-Allow-Origin *;
- add_header Access-Control-Allow-Headers *;
- add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
- if ($request_method = 'OPTIONS') {
- return 204;
- }
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header Remote_addr $remote_addr;
- proxy_set_header X-Real_IP $remote_addr;
- proxy_set_header X-CROS true; # 自定义,有做跨域的时候需要加
- proxy_set_header Host $host;
- proxy_redirect off;
- proxy_http_version 1.1;
- charset utf-8;
- server_name share-console-debug.xinyuepp.cn;
-
- location / {
- root /usr/share/nginx/dist/;
- try_files $uri $uri/ /index.html;
- rewrite ^(.*)share-bms(.*)$ $1shareBms$2;
- #index index.html;
- }
- location /sharebms/v2/ {
- proxy_pass http://sharebms2-svc:9191;
- client_max_body_size 10m;
- }
-
- }
|