@peterzoller467 wrote:
Hello,
i want to forward more domains with the same port to different lxc containers on the port 8008 (tcp).If I don’t do the acl-check the config is working. But I need to check the url.
Here is my config:
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 # 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/ ssl-default-bind-ciphers ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS ssl-default-bind-options no-sslv3defaults
log global
mode httpmode tcp option tcplog option tcp-smart-connect option dontlognull 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.httpfrontend stratum1_frontend
bind *:8008acl host_stratum1 hdr_dom(host) -m beg stratum1.
use_backend stratum1_backend if host_stratum1
#default_backend stratum1_backendbackend stratum1_backend
mode tcp
server stratum1 test1.test.de:8008 check
Posts: 1
Participants: 1