modsecurity:configure_mod_security
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
modsecurity:configure_mod_security [2016/10/14 13:36] – peter | modsecurity:configure_mod_security [2019/11/30 14:16] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== ModSecurity - Configure mod_security ====== | ||
- | Out of the box, modsecurity doesn' | ||
- | |||
- | <code bash> | ||
- | vi / | ||
- | </ | ||
- | |||
- | Find this line | ||
- | |||
- | <file bash / | ||
- | SecRuleEngine DetectionOnly | ||
- | </ | ||
- | |||
- | and change it to: | ||
- | |||
- | <file bash / | ||
- | SecRuleEngine On | ||
- | </ | ||
- | |||
- | If you're trying this out on a production server, change this directive only after testing all your rules. | ||
- | |||
- | Another directive to modify is **SecResponseBodyAccess**. | ||
- | |||
- | Find this | ||
- | |||
- | <file bash / | ||
- | SecResponseBodyAccess On | ||
- | </ | ||
- | |||
- | and change it to: | ||
- | |||
- | <file bash / | ||
- | SecResponseBodyAccess Off | ||
- | </ | ||
- | |||
- | Now we'll limit the maximum data that can be posted to your web application. | ||
- | |||
- | <code bash> | ||
- | SecRequestBodyLimit | ||
- | SecRequestBodyNoFilesLimit | ||
- | </ | ||
- | |||
- | The **SecRequestBodyLimit** directive specifies the maximum POST data size. If anything larger is sent by a client the server will respond with a [[http:// | ||
- | |||
- | The value mentioned in the configuration file is | ||
- | |||
- | <file bash / | ||
- | SecRequestBodyLimit 13107200 | ||
- | </ | ||
- | |||
- | which is 12.5MB. | ||
- | |||
- | Similar to this is the **SecRequestBodyNoFilesLimit** directive. | ||
- | |||
- | The value in the configuration file is | ||
- | |||
- | <file bash / | ||
- | SecRequestBodyNoFilesLimit 131072 | ||
- | </ | ||
- | |||
- | which is 128KB. | ||
- | |||
- | Along the lines of these directives is another one which affects server performance: | ||
- | |||
- | <file bash / | ||
- | SecRequestBodyInMemoryLimit 131072 | ||
- | </ | ||
- | |||
- | This is the value (128KB) specified in the configuration file. | ||
- | |||
- | |||
- | |||
- | |||
- | ===== References ===== | ||
- | |||
- | https:// |
modsecurity/configure_mod_security.1476452176.txt.gz · Last modified: 2020/07/15 09:30 (external edit)