先升级 2022-08-18 14:55 采纳率: 100%
浏览 121
已结题

nginx部署ssl证书域名

问题遇到的现象和发生背景

nginx 配置 域名后不生效

问题相关代码,请勿粘贴截图

server {

listen 80;

server_name http://www.xiaoyulife.cn/;

location / {

proxy_pass http://localhost:8080;

proxy_set_header Host $http_host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

root /usr/local/nginx/html/dist/;

try_files $uri $uri/ /index.html;

index index.html index.htm;

}

location /api/admin {

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://localhost:8080/api/admin; #设置监控后端启动的端口

}

  • 写回答

8条回答 默认 最新

  • lzjpython 2022-08-18 15:23
    关注
    server {
        listen 443 ssl;
    
        server_tokens off;
    
        keepalive_timeout 5;
    
        root /usr/share/nginx/html; #填写您的网站根目录,例如:/usr/local/lighthouse/softwares/wordpress
    
        index index.html;
    
        server_name xiaoyulife.cn; #填写您的证书绑定的域名,例如:www.cloud.tencent.com
    
        ssl_certificate /etc/nginx/ssl/xiaoyulife.cn_bundle.crt; #填写您的证书文件名称,例如:1_cloud.tencent.com_bundle.crt
    
        ssl_certificate_key /etc/nginx/ssl/xiaoyulife.cn.key; #填写您的私钥文件名称,例如:2_cloud.tencent.com.key
    
        ssl_session_cache   shared:SSL:1024m;    
    
        ssl_session_timeout 5m;
    
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;  # 可参考此 SSL 协议进行配置
    
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;   #可按照此加密套件配置,写法遵循 openssl 标准
    
        ssl_prefer_server_ciphers on;
    
        location / {
            proxy_pass http://127.0.0.1:8000;
        }
    
        #location /static {
            #        root /usr/share/nginx/html/;
            #}
    
        #location /media {
            #        root /usr/share/nginx/html/;
            #}
    }
    

    望采纳

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(7条)

报告相同问题?

问题事件

  • 系统已结题 8月30日
  • 已采纳回答 8月22日
  • 赞助了问题酬金10元 8月20日
  • 赞助了问题酬金5元 8月18日
  • 展开全部

悬赏问题

  • ¥15 目标计数模型训练过程中的问题
  • ¥100 Acess连接SQL 数据库后 不能用中文筛选
  • ¥15 用友U9Cloud的webapi
  • ¥20 电脑拓展屏桌面被莫名遮挡
  • ¥20 ensp,用局域网解决
  • ¥15 Python语言实验
  • ¥15 我每周要在投影仪优酷上自动连续播放112场电影,我每一周遥控操作一次投影仪,并使得电影永远不重复播放,请问怎样操作好呢?有那么多电影看吗?
  • ¥20 电脑重启停留在grub界面,引导出错需修复
  • ¥15 matlab透明图叠加
  • ¥50 基于stm32l4系列 使用blunrg-ms的ble gatt 创建 hid 服务失败