当前位置:论坛首页 > Linux面板 > 讨论

【待反馈】location 下配置proxy_redirect无反应

发表在 Linux面板2024-8-23 14:07 [复制链接] 11 515

server
{
    listen 8426 ssl http2 default_server;
    server_name test.dldata.cn;
    index index.html index.htm default.htm default.html;
    root /www/wwwroot/qipuadmin;
    #CERT-APPLY-CHECK--START
    # 用于SSL证书申请时的文件验证相关配置 -- 请勿删除
    include /www/server/panel/vhost/nginx/well-known/qipuaiadmin_1_0_0.conf;
    #CERT-APPLY-CHECK--END

    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    ssl_certificate    /www/server/panel/vhost/cert/qipuaiadmin_1_0_0/fullchain.pem;
    ssl_certificate_key    /www/server/panel/vhost/cert/qipuaiadmin_1_0_0/privkey.pem;
    ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
    ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
    ssl_prefer_server_ciphers on;
    ssl_session_cache shared:SSL:10m;
    ssl_session_timeout 10m;
    add_header Strict-Transport-Security "max-age=31536000";
    # error_page 497  https://$host:8426$request_uri;

    #SSL-END

    #REWRITE-START 伪静态相关配置
    include /www/server/panel/vhost/rewrite/java_qipuaiadmin_1_0_0.conf;
    #REWRITE-END

    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md|package.json|package-lock.json|\.env) {
        return 404;
    }

    #一键申请SSL证书验证目录相关设置
    location /.well-known/ {
        root /www/wwwroot/java_node_ssl;
    }

    #禁止在证书验证目录放入敏感文件
    if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
        return 403;
    }

    #STATIC-START 静态资源相关配置

    #STATIC-END

    #PROXY-LOCAl-START 代理本地服务的相关配置
    #PROXY-START/
    # proxy_redirect http://127.0.0.1:18426 https://test.dldata.cn:8426;
    # proxy_redirect off;
    location / {
        proxy_pass http://127.0.0.1:18426 ;
        # proxy_redirect off;
        proxy_redirect http://127.0.0.1:18426 https://test.dldata.cn:8426;
        # proxy_redirect http://$host:18426/ https://$hostserver_port/;
        # proxy_redirect ~^http://127.0.0.1:18426(.*)  https://test.dldata.cn:8426$1;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header REMOTE-HOST $remote_addr;
        proxy_set_header X-Host- $hostserver_port;
        proxy_set_header X-Scheme $scheme;
        proxy_connect_timeout 30s;
        proxy_read_timeout 86400s;
        proxy_send_timeout 30s;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        # proxy_redirect off;
    }
    #PROXY-END/



    #PROXY-LOCAl-END

    access_log  /www/wwwlogs/qipuaiadmin_1_0_0.log;
    error_log  /www/wwwlogs/qipuaiadmin_1_0_0.error.log;
}
直接访问被代理服务http://127.0.0.1:18426/index.html被重定向到http://127.0.0.1:18426/login.html
%T~E[`H3]5%C~IPO11H[%E1.png
但使用通过宝塔的网站访问https://test.dldata.cn:8426/index.html,不管proxy_redirect off; 还是配置proxy_redirect http://127.0.0.1:18426 https://test.dldata.cn:8426; 都重定向到了http://test.dldata.cn/login.html
GY@9R5XJG[22C3E940LFKNC.png

使用道具 举报 只看该作者 回复
发表于 2024-8-23 14:48:49 | 显示全部楼层
您好,您这边直接在浏览器访问,然后将结果看一下是否争取,不正确请截图
使用道具 举报 回复 支持 反对
发表于 2024-8-23 15:55:43 | 显示全部楼层
运维技术阿闯 发表于 2024-8-23 14:48
您好,您这边直接在浏览器访问,然后将结果看一下是否争取,不正确请截图 ...

浏览器也是一样的,未登录访问https://test.dldata.cn:8426/index.html 后正常应该重定向https://test.dldata.cn:8426/login.html,但实际重定向到了http://test.dldata.cn/login.html,端口和https协议都丢了。
GY@9R5XJG[22C3E940LFKNC.png 可以看到实际被代理的服务重定向是对的http://127.0.0.1:18426/index.html被重定向到http://127.0.0.1:18426/login.html
%T~E[`H3]5%C~IPO11H[%E1.png

使用道具 举报 回复 支持 反对
发表于 2024-8-23 16:46:47 | 显示全部楼层
宝塔用户_hhclhg 发表于 2024-8-23 15:55
浏览器也是一样的,未登录访问https://test.dldata.cn:8426/index.html 后正常应该重定向https://test.dl ...

您好,您这边的代理配置不对吧
proxy_redirect http://127.0.0.1:18426 https://test.dldata.cn:8426;
怎么是两个呢
使用道具 举报 回复 支持 反对
发表于 2024-8-23 16:59:28 | 显示全部楼层
运维技术阿闯 发表于 2024-8-23 16:46
您好,您这边的代理配置不对吧
proxy_redirect http://127.0.0.1:18426 https://test.dldata.cn:8426;
怎 ...

你是说proxy_pass http://127.0.0.1:18426 ;这个配置吧,是只有一个
我是问的proxy_redirect配置,当被代理服务响应301或302重定向时,要将被代理服务重定向的地址(http://127.0.0.1:18426)替换成服务器的端口和地址(https://test.dldata.cn:8426)响应给浏览器
使用道具 举报 回复 支持 反对
发表于 2024-8-23 17:09:22 | 显示全部楼层
宝塔用户_hhclhg 发表于 2024-8-23 16:59
你是说proxy_pass http://127.0.0.1:18426 ;这个配置吧,是只有一个
我是问的proxy_redirect配置,当被代 ...

您好,取消您这边在配置增加的,在您的面板上使用反向代理和重定向
使用道具 举报 回复 支持 反对
发表于 2024-8-23 17:46:35 | 显示全部楼层
运维技术阿闯 发表于 2024-8-23 17:09
您好,取消您这边在配置增加的,在您的面板上使用反向代理和重定向

除了proxy_redirect其它的都是界面面板上配置的,用的是网站映射
使用道具 举报 回复 支持 反对
发表于 2024-8-23 17:53:08 | 显示全部楼层
宝塔用户_hhclhg 发表于 2024-8-23 17:46
除了proxy_redirect其它的都是界面面板上配置的,用的是网站映射

您好,参考一下这个链接查看一下吧
https://www.cnblogs.com/kevingrace/p/8073646.html
使用道具 举报 回复 支持 反对
发表于 2024-8-23 18:05:12 | 显示全部楼层
运维技术阿闯 发表于 2024-8-23 17:53
您好,参考一下这个链接查看一下吧
https://www.cnblogs.com/kevingrace/p/8073646.html ...

主要是proxy_redirect这个配了没效果,我把proxy_redirect 关了配成 proxy_redirect off;也没反应,宝塔没有设置权限什么的吧?
使用道具 举报 回复 支持 反对
发表于 2024-8-23 18:34:29 | 显示全部楼层
宝塔用户_hhclhg 发表于 2024-8-23 18:05
主要是proxy_redirect这个配了没效果,我把proxy_redirect 关了配成 proxy_redirect off;也没反应,宝塔 ...

您好,您在站点设置的时候是基于nginx配置文件修改的
使用道具 举报 回复 支持 反对
发表于 2024-8-23 20:54:07 | 显示全部楼层
运维技术阿闯 发表于 2024-8-23 18:34
您好,您在站点设置的时候是基于nginx配置文件修改的

我是这样配的,关键是我把proxy_redirect 配成off后依然没有反应
使用道具 举报 回复 支持 反对
发表于 2024-8-26 09:42:53 | 显示全部楼层
宝塔用户_hhclhg 发表于 2024-8-23 20:54
我是这样配的,关键是我把proxy_redirect 配成off后依然没有反应

您好,您这边尝试一下本地是否可以呢
使用道具 举报 回复 支持 反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

普通问题处理

论坛响应时间:72小时

问题处理方式:排队(仅解答)

工作时间:白班:9:00 - 18:00

紧急运维服务

响应时间:3分钟

问题处理方式:宝塔专家1对1服务

工作时间:工作日:9:00 - 18:30

宝塔专业团队为您解决服务器疑难问题

立即付费处理

工作时间:09:00至24:00

快速回复 返回顶部 返回列表