15 lines
421 B
Plaintext
15 lines
421 B
Plaintext
<VirtualHost *:80>
|
|
modsecurity on
|
|
modsecurity_rules_file /etc/apache2/modsecurity.d/modsec_rules.conf
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /var/www/html
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
ProxyPreserveHost On
|
|
ProxyRequests off
|
|
ProxyVia Off
|
|
ProxyPass "/" "http://dd-waf-haproxy:81/"
|
|
ProxyPassReverse "/" "http://dd-waf-haproxy:81/"
|
|
</VirtualHost>
|