隐藏

nginx怎么实现http跳转到https

发布:2022/12/20 9:00:21作者:管理员 来源:本站 浏览次数:517

首先按照下面格式修改nginx.conf 配置文件,80端口会自动转给443端口,这样就强制使用SSL证书加密了。

当我们访问http的时候会自动跳转到https上面了,配置请看如下代码:



 

upstream www.begon.cn {

server localhost:7002 weight=1;
#server localhost:90 weight=2;
}
server {
  listen   80;
  server_name  www.begon.cn;
  return   301 https://$server_name$request_uri;
}
 
server {
     listen   443 ssl;
     server_name  www.begon.cn;
     ssl_certificate   C:\\Tools\ssl\\lecturer\\teacher.ysehs.com_bundle.pem;
     ssl_certificate_key  C:\\Tools\ssl\\lecturer\\teacher.ysehs.com.key;
     ssl_session_timeout 20m;
     ssl_session_cache shared:SSL:50m;
     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 / {

               root C:\\Tools\lecturerui;
              index index.html;
              try_files $uri $uri/ /index.html;
        }
        location /prod-api/ {
            proxy_pass http://www.begon.cn;
        }
}

修改配置文件后,重启nginx。