2022-10-01 20:06:19 +02:00
|
|
|
## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }}
|
|
|
|
{%- from "haproxy/map.jinja" import haproxy,certs with context %}
|
|
|
|
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- macro internal() -%}
|
|
|
|
acl internal src -f {{ haproxy.config.dir }}/maps/access
|
2022-10-01 20:06:19 +02:00
|
|
|
http-response return status 403 default-errorfiles if ! internal
|
|
|
|
{%- endmacro -%}
|
|
|
|
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- macro head() -%}
|
2022-10-01 20:06:19 +02:00
|
|
|
http-request return status 200 if { method -i HEAD }
|
|
|
|
{%- endmacro -%}
|
|
|
|
|
2022-12-03 00:07:39 +01:00
|
|
|
{%- macro statusresponses() -%}
|
|
|
|
http-response return content-type text/html string "404 not found" if { status 404 }
|
|
|
|
{%- endmacro -%}
|
|
|
|
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- macro serverheader() -%}
|
|
|
|
http-response set-header server "{{ haproxy.config.servername }}"
|
|
|
|
{%- endmacro -%}
|
|
|
|
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- macro httpcheckrules(layer="layer7",inter="2s",fall=5,rise=5) -%}check observe {{ layer }} inter {{ inter }} fall {{ fall }} rise {{ rise }}{%- endmacro -%}
|
2022-12-09 23:47:23 +01:00
|
|
|
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- macro httpsslrules() -%}ssl verify none{%- endmacro -%}
|
|
|
|
|
2022-12-09 23:47:23 +01:00
|
|
|
{%- macro httpendpoints(servers=[], check=True, ssl=False, disabled=False) -%}
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- for server in servers %}
|
2022-12-09 23:47:23 +01:00
|
|
|
server {{ server.name }} {{ server.name }}:{{ server.port }}{{ " " + httpcheckrules(inter=server.inter|default("2s"), fall=server.fall|default(5), rise=server.rise|default(5)) if check }}{{ " " + httpsslrules() if ssl }}{{ " disabled" if server.disabled|default(False) }}
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- endfor %}
|
|
|
|
{%- endmacro -%}
|
|
|
|
|
|
|
|
{%- macro tcpendpoints(servers=[], check=True) -%}
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- for server in servers %}
|
2022-11-13 20:48:27 +01:00
|
|
|
server {{ server.name }} {{ server.name }}:{{ server.port }}{{ " check" if check }}{{ " backup" if server.backup|default(False) }} port {{ server.port }}
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- endfor %}
|
|
|
|
{%- endmacro -%}
|
|
|
|
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- macro cache() -%}
|
2022-11-08 11:04:39 +01:00
|
|
|
http-request cache-use static if { path_end {{ haproxy.config.cache_file_types|join(" ") }} }
|
2022-12-11 16:34:27 +01:00
|
|
|
http-response cache-store static
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- endmacro -%}
|
|
|
|
|
|
|
|
{%- macro compression() -%}
|
|
|
|
compression algo gzip
|
2022-11-08 11:04:39 +01:00
|
|
|
compression type {{ haproxy.config.gzip_mime_types|join(' ') }}
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- endmacro -%}
|
|
|
|
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- macro admin() -%}
|
2022-12-09 23:47:23 +01:00
|
|
|
# Stats Backend
|
|
|
|
backend admin
|
2022-10-01 20:06:19 +02:00
|
|
|
mode http
|
|
|
|
stats enable
|
2022-12-03 00:07:39 +01:00
|
|
|
stats admin if TRUE
|
2022-12-10 11:50:13 +01:00
|
|
|
stats refresh 10s
|
2022-12-03 00:07:39 +01:00
|
|
|
stats show-modules
|
|
|
|
stats show-legends
|
2022-12-10 11:50:13 +01:00
|
|
|
stats uri /server-status
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- endmacro -%}
|
|
|
|
|
|
|
|
{%- macro api() -%}
|
2022-11-08 11:04:39 +01:00
|
|
|
# Runtime API
|
|
|
|
stats socket {{ haproxy.config.api.tcpsocket }} level admin
|
|
|
|
stats socket {{ haproxy.config.api.filesocket }} mode 666 level admin
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- endmacro %}
|
|
|
|
|
2022-11-08 11:04:39 +01:00
|
|
|
# Global config
|
2022-10-01 20:06:19 +02:00
|
|
|
global
|
2022-10-23 16:37:53 +02:00
|
|
|
lua-prepend-path {{ haproxy.config.dir }}/scripts/?.lua
|
|
|
|
{%- for file in haproxy.scripts %}
|
|
|
|
{%- if not file.lib %}
|
|
|
|
lua-load {{ haproxy.config.dir }}/{{ file.name }}
|
|
|
|
{%- endif %}
|
2022-10-10 10:16:32 +02:00
|
|
|
{%- endfor %}
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- if haproxy.config.api.enable %}
|
|
|
|
{{ api() }}
|
|
|
|
{%- endif %}
|
2022-11-08 11:04:39 +01:00
|
|
|
maxconn 1000
|
2022-10-01 20:06:19 +02:00
|
|
|
ssl-default-bind-ciphers {{ haproxy.config.ssl_ciphers|join(":") }}
|
|
|
|
ssl-default-bind-options {{ haproxy.config.ssl_options|join(" ") }}
|
|
|
|
ssl-default-server-ciphers {{ haproxy.config.ssl_ciphers|join(":") }}
|
|
|
|
ssl-default-server-options {{ haproxy.config.ssl_options|join(" ") }}
|
2022-10-23 16:37:53 +02:00
|
|
|
crt-base {{ haproxy.config.acme_fullchains_dir }}
|
|
|
|
ssl-dh-param-file {{ haproxy.config.acme_dh_dir }}/dh.pem
|
2022-10-01 20:06:19 +02:00
|
|
|
|
2022-11-08 11:04:39 +01:00
|
|
|
# Defaults values
|
2022-10-01 20:06:19 +02:00
|
|
|
defaults
|
2022-10-23 16:37:53 +02:00
|
|
|
{%- for key, value in haproxy.config.defaults.items() %}
|
|
|
|
{{ key }} {{ value }}
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- endfor %}
|
|
|
|
|
2022-11-08 11:04:39 +01:00
|
|
|
# Cache
|
2022-10-10 10:16:32 +02:00
|
|
|
cache static
|
2022-12-03 00:07:39 +01:00
|
|
|
total-max-size 64
|
2022-10-10 10:16:32 +02:00
|
|
|
max-object-size 50000
|
|
|
|
max-age 120
|
|
|
|
|
2022-11-08 11:04:39 +01:00
|
|
|
# Per IP rates stick table
|
2022-10-23 16:37:53 +02:00
|
|
|
backend per_ip_rates
|
2022-12-03 00:07:39 +01:00
|
|
|
stick-table type string size 1m expire {{ haproxy.config.ddos.timeperiod|default("10s") }} store http_req_rate({{ haproxy.config.ddos.timeperiod|default("10s")}})
|
2022-10-23 16:37:53 +02:00
|
|
|
|
2022-11-08 11:04:39 +01:00
|
|
|
# Default HTTP frontend
|
2022-10-01 20:06:19 +02:00
|
|
|
frontend http
|
2022-12-03 00:07:39 +01:00
|
|
|
bind *:{{ haproxy.config.http_port }},:::{{ haproxy.config.http_port }} v4v6
|
2022-10-01 20:06:19 +02:00
|
|
|
mode http
|
|
|
|
acl http ssl_fc,not
|
2022-12-03 00:07:39 +01:00
|
|
|
acl path_host path /host
|
|
|
|
acl path_date path /date
|
|
|
|
http-request return status 200 content-type text/html lf-string "%H\n" if path_host
|
|
|
|
http-request return status 200 content-type text/html lf-string "%T\n" if path_date
|
2022-10-01 20:06:19 +02:00
|
|
|
http-request redirect scheme https if http
|
|
|
|
|
2022-11-08 11:04:39 +01:00
|
|
|
# Default HTTPS frontend
|
2022-10-01 20:06:19 +02:00
|
|
|
frontend https
|
2022-12-03 00:07:39 +01:00
|
|
|
bind *:{{ haproxy.config.https_port }},:::{{ haproxy.config.https_port }} v4v6 ssl crt {{ haproxy.config.acme_fullchains_dir }}{% if haproxy.config.http2 %} alpn h2,http/1.1{% endif %}
|
|
|
|
#bind quic4@*:{{ haproxy.config.https_port }},quic6@:::{{ haproxy.config.https_port }} v4v6 ssl crt {{ haproxy.config.acme_fullchains_dir }}{% if haproxy.config.http2 %} alpn h2,http/1.1{% endif %}
|
2022-10-23 16:37:53 +02:00
|
|
|
mode http
|
|
|
|
option httplog
|
2022-11-08 11:04:39 +01:00
|
|
|
acl internal src -f {{ haproxy.config.dir }}/maps/access
|
2022-12-09 23:47:23 +01:00
|
|
|
acl domains req.hdr(Host),map_dom({{ haproxy.config.dir }}/maps/domains) -m found req.hdr(Host) -m str %H
|
2022-12-03 00:07:39 +01:00
|
|
|
acl robots_txt path /robots.txt
|
|
|
|
acl path_host path /host
|
|
|
|
acl path_date path /date
|
2022-12-09 23:47:23 +01:00
|
|
|
{%- if haproxy.config.admin.enable %}
|
2022-12-17 23:26:58 +01:00
|
|
|
acl admin path_beg /server-status
|
2022-12-09 23:47:23 +01:00
|
|
|
{%- endif %}
|
2022-11-08 11:04:39 +01:00
|
|
|
http-request set-var(req.src) src
|
|
|
|
http-request set-var(req.host) req.hdr(host)
|
|
|
|
http-request set-var(req.accesshash) str(),concat(,req.src,),concat(-,req.host,)
|
|
|
|
http-request track-sc0 var(req.accesshash) table per_ip_rates
|
2022-12-09 23:47:23 +01:00
|
|
|
|
2022-10-23 16:37:53 +02:00
|
|
|
http-request capture req.hdr(User-Agent) len 200
|
|
|
|
http-request capture req.hdr(Content-Type) len 200
|
|
|
|
http-request capture req.hdr(Referer) len 200
|
|
|
|
http-request capture sc_http_req_rate(0) len 4
|
2022-12-09 23:47:23 +01:00
|
|
|
|
|
|
|
## DDoS
|
2022-12-03 00:07:39 +01:00
|
|
|
http-request deny deny_status 429 if { sc_http_req_rate(0) gt {{ haproxy.config.ddos.maxrequests|default(200)}} } !internal
|
2022-12-09 23:47:23 +01:00
|
|
|
|
|
|
|
## Returns
|
2022-12-03 00:07:39 +01:00
|
|
|
http-request return status 200 content-type text/html string "User-agent: *\r\nDisallow: /" if robots_txt
|
|
|
|
http-request return status 200 content-type text/html lf-string "%H\n" if path_host
|
|
|
|
http-request return status 200 content-type text/html lf-string "%T\n" if path_date
|
2022-12-09 23:47:23 +01:00
|
|
|
|
|
|
|
## Headers
|
2022-11-08 11:04:39 +01:00
|
|
|
http-request set-header X-Proxy-Id "{{ salt["grains.get"]("host") }}"
|
|
|
|
http-request set-header X-Proto https if { ssl_fc }
|
2022-10-23 16:37:53 +02:00
|
|
|
log-format "%ci:%cp [%tr] %ft %b/%s %TR/%Tw/%Tc/%Tr/%Ta %ST %B %CC %CS %tsc %ac/%fc/%bc/%sc/%rc %sq/%bq %hr %hs %{+Q}r"
|
2022-12-03 00:07:39 +01:00
|
|
|
http-request redirect location %[req.hdr(host),map_dom({{ haproxy.config.dir }}/maps/redirects)] code 301 if { req.hdr(host),map_dom({{ haproxy.config.dir }}/maps/redirects) -m found }
|
2022-12-09 21:56:25 +01:00
|
|
|
http-request deny deny_status 404 unless domains
|
2022-12-09 23:47:23 +01:00
|
|
|
{%- if haproxy.config.admin.enable %}
|
|
|
|
use_backend admin if admin internal
|
|
|
|
{%- endif %}
|
2022-11-08 11:04:39 +01:00
|
|
|
use_backend %[req.hdr(Host),lower,map({{ haproxy.config.dir }}/maps/vhosts,nginx)]
|
2022-12-09 23:47:23 +01:00
|
|
|
monitor-uri /dead_or_alive
|
2022-10-01 20:06:19 +02:00
|
|
|
default_backend nginx
|
|
|
|
|
2022-11-08 11:04:39 +01:00
|
|
|
# HTTP Backends
|
2022-12-03 00:07:39 +01:00
|
|
|
{%- for name, values in haproxy.config.vhosts.items() %}
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- if not values.redirect|default(False) %}
|
2022-10-01 20:06:19 +02:00
|
|
|
backend {{ name }}
|
2022-11-13 20:48:27 +01:00
|
|
|
balance {{ values.balance|default(haproxy.config.balance) }}
|
2022-10-23 16:37:53 +02:00
|
|
|
mode http
|
|
|
|
option forwardfor
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- if values.check|default(haproxy.config.check) %}
|
2022-11-08 11:04:39 +01:00
|
|
|
option httpchk
|
|
|
|
{%- for step in values.check_steps|default([]) %}
|
|
|
|
http-check {{ step }}
|
|
|
|
{%- endfor %}
|
|
|
|
{%- endif %}
|
2022-12-03 00:07:39 +01:00
|
|
|
{{ statusresponses() }}
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- if values.head|default(False) %}
|
2022-10-23 16:37:53 +02:00
|
|
|
{{ head() }}
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- endif %}
|
2022-10-23 16:37:53 +02:00
|
|
|
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- if values.compression|default(True) %}
|
2022-10-23 16:37:53 +02:00
|
|
|
{{ compression() }}
|
|
|
|
{%- endif %}
|
|
|
|
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- if values.usecache|default(True) %}
|
2022-10-23 16:37:53 +02:00
|
|
|
{{ cache() }}
|
|
|
|
{%- endif %}
|
|
|
|
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- if values.serverheader|default(True) %}
|
2022-10-23 16:37:53 +02:00
|
|
|
{{ serverheader() }}
|
2022-10-10 10:16:32 +02:00
|
|
|
{%- endif %}
|
2022-10-23 16:37:53 +02:00
|
|
|
|
2022-11-13 20:48:27 +01:00
|
|
|
{%- if values.internal|default(False) %}
|
2022-10-23 16:37:53 +02:00
|
|
|
{{ internal() }}
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- endif %}
|
2022-11-13 20:48:27 +01:00
|
|
|
{{- httpendpoints(servers=values.servers, check=values.check|default(haproxy.config.check), ssl=values.ssl|default(False)) }}
|
2022-11-08 11:04:39 +01:00
|
|
|
{%- endif %}
|
|
|
|
{% endfor %}
|
2022-10-01 20:06:19 +02:00
|
|
|
|
2022-11-08 11:04:39 +01:00
|
|
|
# TCP services
|
2022-12-03 00:07:39 +01:00
|
|
|
{%- for name, values in haproxy.config.services.items() %}
|
2022-10-01 20:06:19 +02:00
|
|
|
listen {{ name }}
|
2022-11-08 11:04:39 +01:00
|
|
|
bind *:{{ values.port }},:::{{ values.port }} v4v6
|
2022-10-01 20:06:19 +02:00
|
|
|
mode tcp
|
2022-10-23 16:37:53 +02:00
|
|
|
option tcplog
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- if values.type == "postgres" %}
|
2022-12-09 21:56:25 +01:00
|
|
|
option pgsql-check user repmgr
|
2022-12-03 00:07:39 +01:00
|
|
|
option tcpka
|
2022-10-01 20:06:19 +02:00
|
|
|
{%- endif %}
|
|
|
|
default-server inter 3s fall 3
|
2022-11-13 20:48:27 +01:00
|
|
|
{{- tcpendpoints(servers=values.servers, check=values.check|default(haproxy.config.check)) }}
|
2022-12-17 23:26:58 +01:00
|
|
|
{% endfor %}
|
2022-12-09 23:47:23 +01:00
|
|
|
|
2022-12-11 16:34:27 +01:00
|
|
|
# SPOE Agents
|
|
|
|
{%- for name, values in haproxy.config.spoe.items() %}
|
|
|
|
listen {{ name }}
|
|
|
|
bind *:{{ values.port }},:::{{ values.port }} v4v6
|
2022-12-17 23:26:58 +01:00
|
|
|
{% endfor %}
|
2022-12-11 16:34:27 +01:00
|
|
|
|
2022-12-17 23:26:58 +01:00
|
|
|
{%- if haproxy.config.admin.enable %}
|
2022-12-09 23:47:23 +01:00
|
|
|
{{ admin() }}
|
|
|
|
{%- endif %}
|