• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    如何通过nginx负载均衡跳转https

    web端拷贝证书与密钥

       scp -rp -P52113 /application/nginx/conf/key 10.0.0.5:/application/nginx/conf/

    在nginx负载均衡服务端配置

    vim /application/nginx/conf/nginx.conf

    worker_processes 2;
    error_log logs/error.log;
    events {
      worker_connections 65535;
    }
    http {
      include    mime.types;
      default_type application/octet-stream;
      sendfile    on;
      keepalive_timeout 65;
     
     
      upstream server_pools {
        server 10.0.0.200:443 weight=1 max_fails=3 fail_timeout=10;
        #server 10.0.0.8:443 weight=1 max_fails=3 fail_timeout=10;
        #server 10.0.0.9:443 weight=1 max_fails=3 fail_timeout=10;
      }
     
      server {
        listen    80;
        server_name localhost;
        rewrite ^(.*)$ https://$host$1 permanent;
      }
      server {
        listen 10.0.0.5:443;
        server_name www.abc.com;
     
        #开启 https 注意要添加在server区块 不能在http区块中放置
        ssl on;
        ssl_certificate /application/nginx/conf/key/server.crt;
        ssl_certificate_key /application/nginx/conf/key/server.key;
     
        location / {
          proxy_pass https://server_pools;
          proxy_set_header Host $host;
          proxy_set_header X-Forwarded-For $remote_addr;
        }
      }
    }
    
    

    #检查nginx负载均衡配置

       /application/nginx/sbin/nginx -t

    #重启nginx负载均衡

       /application/nginx/sbin/nginx -s stop
       /application/nginx/sbin/nginx

    浏览器访问测试

    注意修改hosts对应的是负载均衡的IP地址信息

    访问测试

    访问结果

    上一篇:Windows server 2008 R2远程桌面3389端口的修改方法
    下一篇:docker nginx 运行后无法访问的问题解决
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    如何通过nginx负载均衡跳转https 如何,通过,nginx,负载,均衡,