[mod-security-users] problem with sub-folders
Brought to you by:
victorhora,
zimmerletw
From: it2 <it...@pl...> - 2016-08-04 10:31:46
|
Hello. I have nginx 1.10.1 with modsecurity module. I have built it from sources as it shown here: https://github.com/SpiderLabs/ModSecurity/wiki/Reference-Manual#Installation_for_NGINX So, if I use one page protected by modsecurity, it works fine. But if there are some subfolders on protected site, I have a problem: *(failed)** **net::ERR_EMPTY_RESPONSE* Here is a part of my nginx config: location / { ModSecurityEnabled on; ModSecurityConfig modsecurity.conf; # Only needed if including proxies proxy_pass https://test.company.com; proxy_read_timeout 180s; } When I remove lines with ModSecurity my proxy_pass works correct. How fix it? |