Update to 2021-12-01 19:13

This commit is contained in:
Daniel Berteaud
2021-12-01 19:13:34 +01:00
commit 4c4556c660
2153 changed files with 60999 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
DOSHashTableSize 3097
DOSPageCount {{ httpd_dos_page_count | default('40') }}
DOSSiteCount {{ httpd_dos_site_count | default('150') }}
DOSPageInterval {{ httpd_dos_page_interval | default('1') }}
DOSSiteInterval {{ httpd_dos_site_interval | default('5') }}
DOSBlockingPeriod {{ httpd_dos_block_time | default('30') }}
{% if system_admin_email is defined %}
DOSEmailNotify {{ system_admin_email }}
{% endif %}
DOSWhitelist 127.0.0.1
{% for ip in trusted_ip | default([]) %}
DOSWhitelist {{ ip }}
{% endfor %}
{% for ip in httpd_dos_whitelisted_ip | default([])%}
DOSWhitelist {{ ip }}
{% endfor %}