1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| server { listen 443 ssl; server_name santa.quartz.ren; root html; index index.html index.htm; ssl_certificate conf.d/cert/3714771_wiki.quartz.ren.pem; ssl_certificate_key conf.d/cert/3714771_wiki.quartz.ren.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on;
location /xboot/ { proxy_pass http://127.0.0.1:8888/xboot/; } location /home/ { proxy_pass http://127.0.0.1:8888/home/; } location / { root /home/zhangquanquan/app/santa-admin-front/dist/; index index.html index.htm; } }
|