Nginx自动跳转https

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx自动跳转https相关的知识,希望对你有一定的参考价值。

nginx自动从http跳转到https

#vim nginx.conf

    server {

       listen 80;

       server_name www.test.com;

       charset utf-8;

       return     301 https://$server_name$request_uri;  #添加这行,即可以实现从http跳转到https

       access_log  logs/wwwuat.yaok.com.log  main;

       location / {

           rewrite ^/(.*)$ //$1 last;

       }


        location ^~ // {

                proxy_pass   http://127.0.0.1:8064;

                proxy_redirect off;

                proxy_set_header X-Real-IP $remote_addr;

                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        }


     }


以上是关于Nginx自动跳转https的主要内容,如果未能解决你的问题,请参考以下文章

如何让http自动跳转https

怎么让http自动跳转https

http自动转https配置(nginx)

http自动跳转到https

nginx 怎么自动跳转到 https 而不允许 http 访问

Nginx实战:编译安装,在线升级,实现多域名 http和 https,自动跳转