如何在 HAproxy 中使用 http-request redirect 或 http-request set-path?

如何在 HAproxy 中使用 http-request redirect 或 http-request set-path?

我是 HAProxy 的新手,正在为此绞尽脑汁。我试图设置一个我认为相当简单的练习,将监听各种端口的应用程序映射到特定的 URL。例如,如果我的应用程序页面设计器正在监听http://IP:30000,然后我想将其映射到http://IP/page-designer.I我知道我以前问过类似的问题。但这次,问题实际上有点不同。经过一番研究,我听说这可以使用 http 请求重定向或添加 reqrep 来完成 ^([^\ ])\ /页面设计师(.) \1\ \2 在后端。

haproxy配置文件

global
        log /dev/log    local0
        log /dev/log    local1 notice
        chroot /var/lib/haproxy
        stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners
        stats timeout 30s
        user haproxy
        group haproxy
        daemon

        # Default SSL material locations
        ca-base /etc/ssl/certs
        crt-base /etc/ssl/private

        # Default ciphers to use on SSL-enabled listening sockets.
        # For more information, see ciphers(1SSL). This list is from:
        #  https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/
        # An alternative list with additional directives can be obtained from
        #  https://mozilla.github.io/server-side-tls/ssl-config-generator/?server=haproxy
        ssl-default-bind-ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:!aNULL:!MD5:!DSS
        ssl-default-bind-options no-sslv3

defaults
        log     global
        mode    http
        option  httplog
        option  dontlognull
        timeout connect 5000
        timeout client  50000
        timeout server  50000
        errorfile 400 /etc/haproxy/errors/400.http
        errorfile 403 /etc/haproxy/errors/403.http
        errorfile 408 /etc/haproxy/errors/408.http
        errorfile 500 /etc/haproxy/errors/500.http
        errorfile 502 /etc/haproxy/errors/502.http
        errorfile 503 /etc/haproxy/errors/503.http
        errorfile 504 /etc/haproxy/errors/504.http

frontend http-in
    mode    http

    bind 206.189.22.155:80

    acl path-page-designer              path_beg -i /page-designer
    use_backend page-designer-backend   if path-page-designer

backend page-designer-backend
    mode    http

    option  httplog
    option  forwardfor

    server  appserver1 206.189.22.155:30000

http://206.189.22.155:30000显示 apache tomcat 主页。但是点击http://206.189.22.155/页面设计师显示“HTTP 状态 404 - /page-designer 请求的资源不可用”。所以我应该如何修改我的 haproxy.cfg 以使用 http-request 重定向或 http-request set-path 来重写请求的路径。我也尝试过在端口 5000 上运行的另一个 node js 应用程序,但那次我得到的不是 404 错误,而是“无法获取 /page-designer”。所以我确定这里到底出了什么问题。请帮忙?

答案1

在你的后端,使用

http-request set-path %[path,regsub(/page-designer(.*),\1)]

这应该做一个正则表达式替换来/page-designer从你的路径中删除

相关内容