2020-10-24 22:08:34 -04:00
|
|
|
global
|
|
|
|
log /dev/log local0
|
|
|
|
log /dev/log local1 notice
|
|
|
|
chroot /var/lib/haproxy
|
|
|
|
stats timeout 30s
|
|
|
|
user haproxy
|
|
|
|
group haproxy
|
|
|
|
daemon
|
2020-10-24 22:31:19 -04:00
|
|
|
ssl-dh-param-file /etc/haproxy/dhparam4096.pem
|
2020-10-24 22:08:34 -04:00
|
|
|
|
|
|
|
defaults
|
|
|
|
log global
|
|
|
|
# mode tcp
|
|
|
|
mode http
|
|
|
|
option httplog
|
|
|
|
option dontlognull
|
|
|
|
timeout connect 5000
|
|
|
|
timeout client 50000
|
|
|
|
timeout server 50000
|
|
|
|
option http-server-close
|
|
|
|
|
|
|
|
#### Main fron end ####
|
2020-10-25 11:50:14 -04:00
|
|
|
frontend main_front
|
|
|
|
bind *:80
|
2020-10-24 22:08:34 -04:00
|
|
|
bind *:443 ssl crt /etc/haproxy/ssl/ alpn h2,http/1.1
|
2020-10-25 11:50:14 -04:00
|
|
|
# http-request redirect scheme https unless { ssl_fc }
|
|
|
|
redirect scheme https code 301 if !{ ssl_fc }
|
2020-10-24 22:08:34 -04:00
|
|
|
|
|
|
|
#### Stats Page ####
|
|
|
|
stats uri /haproxy?stats
|
|
|
|
stats auth nick:sBbGmTah67npAPvehEmi5q9NwS5GA
|
|
|
|
|
|
|
|
#### Set correct IP ####
|
|
|
|
acl from_cf src -f /etc/haproxy/cloudflare_ips.lst
|
|
|
|
acl cf_ip_hdr req.hdr(CF-Connecting-IP) -m found
|
|
|
|
# http-request set-header X-Forwarded-For %[req.hdr(CF-Connecting-IP)] if from_cf cf_ip_hdr
|
|
|
|
http-request set-header real-ip1 %[req.hdr(CF-Connecting-IP)] if from_cf cf_ip_hdr
|
|
|
|
|
|
|
|
#### WP admin to single server ####
|
|
|
|
acl url_is_wp_admin path_beg /wp-admin /wp-login.php /manage /securein
|
2020-10-24 22:25:59 -04:00
|
|
|
use_backend adminServerHTTP if url_is_wp_admin
|
2020-10-24 22:08:34 -04:00
|
|
|
|
2020-10-25 11:50:14 -04:00
|
|
|
#### LE cert ####
|
|
|
|
acl letsencrypt-acl path_beg /.well-known/acme-challenge/
|
|
|
|
use_backend letsencrypt-backend if letsencrypt-acl
|
|
|
|
|
2020-10-24 22:08:34 -04:00
|
|
|
#### Configure Backends ####
|
2020-10-24 22:25:59 -04:00
|
|
|
default_backend webserversHTTP
|
2020-10-24 22:08:34 -04:00
|
|
|
|
|
|
|
#### Main Backend ####
|
2020-10-24 22:25:59 -04:00
|
|
|
backend webserversHTTP
|
2020-10-24 22:08:34 -04:00
|
|
|
balance roundrobin
|
2020-10-25 11:50:14 -04:00
|
|
|
server web01 10.108.0.2:80 check
|
2020-10-25 12:13:09 -04:00
|
|
|
server web02 10.108.0.5:80 check
|
2020-10-24 22:08:34 -04:00
|
|
|
|
|
|
|
#### Admin server ####
|
2020-10-24 22:31:19 -04:00
|
|
|
backend adminServerHTTP
|
2020-10-24 22:08:34 -04:00
|
|
|
balance roundrobin
|
2020-10-25 11:50:14 -04:00
|
|
|
server web01 10.108.0.2:80 check
|
2020-10-25 12:13:09 -04:00
|
|
|
server web02 10.108.0.5:80 check
|
2020-10-25 11:50:14 -04:00
|
|
|
|
|
|
|
#### LE Backend ####
|
|
|
|
backend letsencrypt-backend
|
|
|
|
server letsencrypt 127.0.0.1:8080
|