Java-nginx配置https
Posted 小鱼等鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java-nginx配置https相关的知识,希望对你有一定的参考价值。
server { # listen 80; // 如果开启443,80最好关掉 listen 443 ssl; ssl_certificate /etc/nginx/conf.d/ssl/server.crt; // 公私钥加载位置 ssl_certificate_key /etc/nginx/conf.d/ssl/server.key; server_name localhost; access_log /var/log/nginx/syncSign_web.access.log; error_log /var/log/nginx/syncSign_web.error.log; location / { root /root/build_dhFront; index index.html; try_files $uri $uri/ /index.html; } // 将所有api接口的请求直接代理到本地8088端口,前端js项目中不需要填写IP和port location /api/ { proxy_pass http://127.0.0.1:8088; } }
用到的https自签名证书的生成方式:
https://www.cnblogs.com/sunkaikees/p/10273897.html
以上是关于Java-nginx配置https的主要内容,如果未能解决你的问题,请参考以下文章