gpt4 book ai didi

haproxy acl 在 https/tcp 模式下不起作用

转载 作者:行者123 更新时间:2023-12-04 17:40:55 24 4
gpt4 key购买 nike

我遇到了一些问题,似乎我无法让 acl 在 tcp 模式下工作,一切都在 http 模式下工作。
这是我的配置。

frontend  http *:80
acl http_test_acl path_beg -i /test
use_backend http_test if http_test_acl
default_backend http_default

backend http_test
balance roundrobin
server httptest 10.10.10.10:80 check

backend http_default
balance roundrobin
server httpdefault 10.10.10.10:80 check

############# HTTPS #################
frontend https *:443
mode tcp
acl https_test_acl path_beg -i /test
use_backend https_test if https_test_acl
default_backend https_default

backend https_test
mode tcp
balance roundrobin
server httpstest 10.10.10.10:443 check

backend https_default
mode tcp
balance roundrobin
server httpsdefault 10.10.10.10:443 check

不要注意 ip 10.10.10.10 因为我隐藏了我的原始 IP。你能告诉我为什么 https 不工作吗,http 前端/后端 acl 规则工作得很好。

干杯

最佳答案

因为您的 https 服务器处于 tcp 模式(因为它们应该用于 ssl),所以第 7 层规则不起作用。

关于haproxy acl 在 https/tcp 模式下不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3949872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com