我正在配置我的域,我想将 HAProxy 设置为我所有子域的反向代理。不知何故,我配置不正确,我完全不知道哪里出了问题。这是我的完整 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
stats timeout 30s
user haproxy
group haproxy
daemon
# Default SSL material locations
ca-base /etc/ssl/certs
crt-base /etc/ssl/private
# See: https://ssl-config.mozilla.org/#server=haproxy&server-version=2.0.3&config=intermediate
ssl-default-bind-ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POL>
ssl-default-bind-ciphersuites TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256
ssl-default-bind-options ssl-min-ver TLSv1.2 no-tls-tickets
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
bind *:80
acl subhome hdr_sub(host) -i homeassistant.exampledomain.com
use_backend habackend if subhome
backend habackend
mode http
option forwardfor
server homeassistant 192.168.5.1:8123
HAProxy 本身肯定是有效的,因为当我尝试访问我的域的根目录时,它会给我一个 503 服务不可用(应该如此),但是当我尝试访问子域时,它只是没有返回任何内容。
如果 HAproxy 有效,首先我会检查 HAProxy 日志中是否存在任何可能表明配置或连接存在问题的错误或警告。
但是,根据您在配置中提到的数据,请检查下面的配置,看看它是否有效。
<--
-->