digitaldemocratic/dd-sso/docker/waf-modsecurity/000-default.conf

17 lines
503 B
Plaintext
Raw Normal View History

2022-10-25 13:48:10 +02:00
<VirtualHost *:80>
2022-11-21 11:37:02 +01:00
modsecurity Off
modsecurity_rules_file /etc/apache2/modsecurity.d/modsec_rules.conf
2022-10-25 13:48:10 +02:00
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
2022-11-10 00:28:20 +01:00
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined
2022-10-25 13:48:10 +02:00
ProxyPreserveHost On
ProxyRequests off
ProxyVia Off
# Do not touch the proxy headers, these are set by HAProxy before
ProxyAddHeaders off
ProxyPass "/" "http://dd-sso-haproxy:81/"
ProxyPassReverse "/" "http://dd-sso-haproxy:81/"
2022-10-25 13:48:10 +02:00
</VirtualHost>