Eu configurei o Haproxy, o verniz e o apache2 no servidor do Ubuntu e há vários sites sendo executados com http e https.
seguinte configuração configurada como abaixo:
---443--> |
| HAProxy ------>Varnish(8081) ----------> apache2(8080)
---80---> |
haproxy.cfg
frontend http-example
bind *:80
frontend https-example
bind *:443 ssl crt /etc/letsencrypt/live/example.in/example.pem
mode http
http-request set-header X-Forwarded-Proto https
default_backend example
backend example
stick-table type binary len 32 size 30k expire 30m
acl clienthello req_ssl_hello_type 1
acl serverhello rep_ssl_hello_type 2
tcp-request inspect-delay 5s
tcp-request content accept if clienthello
tcp-response content accept if serverhello
stick on payload_lv(43,1) if clienthello
stick store-response payload_lv(43,1) if serverhello
server varnish 127.0.0.1:8081 check
Plano:
HAproxy:
Aqui eu tenho que configurar, se o usuário executar exmaple.com
e www.example.in
, em seguida, redirecionar para https://example.in
-Para https
se example1.in
redireciona para www.exmaple1.in
e assim por diante.