nginx https shiro logout自动回到http

Posted 张顺海

tags:

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

开发毕设Docker部署nginx代理https之后,遇到一个问题

使用的Shiro点退出一直跳到http

 

 解决方法:

proxy_redirect http:// https://

server {
        listen 9999;
        server_name www.qqzsh.top;
        ssl on;
        ssl_certificate  /etc/nginx/b.pem;
        ssl_certificate_key  /etc/nginx/a.key;
        ssl_session_timeout 5m;
        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 / {
            proxy_pass http://172.30.0.2:10086;
            add_header Content-Security-Policy upgrade-insecure-requests;
            proxy_set_header Host $host:$server_port;
           proxy_set_header X-Real-IP $remote_addr; 
           proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
           proxy_redirect http:// https://;
            client_max_body_size 10M;
        }
    }

 

以上是关于nginx https shiro logout自动回到http的主要内容,如果未能解决你的问题,请参考以下文章

shiro自定义logout filter

Shiro在logout退出后,怎么防止浏览器的后退刷新操作

springBoot shiro

Shiro-从数据表中初始化资源和权限

shiroauthc与logout

shiro kick out user