<div dir="ltr"><div>Hi All<br></div><div><br>I have complied the<b> nginx 1.9.9</b> with ModSecurity  support  . and configured the nginx,conf as fallows <br><b><br></b></div><div><b>Nginx Version : 1.9.9<br></b></div><div><b>Modsecurity Version : 2.9</b><br></div><div><div><br><br>#nginx -V<br><br>nginx version: nginx/1.9.9<br>built by gcc 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04) <br>built with OpenSSL 1.0.1f 6 Jan 2014<br>TLS SNI support enabled<br>configure arguments: --user=www-data --group=www-data --with-pcre-jit --with-debug --with-ipv6 --with-http_ssl_module --add-module=/opt/modsecurity-2.9.0/nginx/modsecurity<br><br><br><b>nginx.conf<br>=========<br><br><br></b>user  www-data;<br>worker_processes  1;<br><br>error_log  /var/log/nginx/error.log;<br><br><br>events {<br>    worker_connections  1024;<br>}<br><br><br>http {<br>    include       mime.types;<br>    default_type  application/octet-stream;<br>     access_log /var/log/nginx/access.log;<br><br>    sendfile        on;<br>    keepalive_timeout  65;<br><br>     gzip  on;<br><br>    server {<br>        listen       80;<br>        server_name  <a href="http://example.org">example.org</a>;<br>        location / {<br><br>           ModSecurityEnabled on;<br>           ModSecurityConfig modsecurity.conf;<br><br>            root   html;<br>            index  index.html index.htm;<br>        }<br><br><br><br>     location /sonar {<br><br>     ModSecurityEnabled on;<br>     ModSecurityConfig modsecurity.conf;<br>     proxy_set_header X-Forwarded-Host $host;<br>     proxy_set_header X-Forwarded-Server $host;<br>     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<br>     proxy_pass <a href="http://192.168.8.52:443/sonar">http://192.168.8.52:443/sonar</a>;<br>    }<br><br>        error_page   500 502 503 504  /50x.html;<br>        location = /50x.html {<br>            root   html;<br>        }<br><br>    }<br><br><br><br></div><div>-> When i access  the <b><a href="http://example.org">http://example.org</a></b>  i can access the web page and  modsecurity  lodged the access data to to Audit log .<br><br></div><div>->  Then i access the <b> <a href="http://example.org/sonar">http://example.org/sonar</a>   </b>i get the following error in my logfile <br><br><br>2016/01/20 18:17:28 [alert] 3520#0: worker process 3549 exited on signal 11 (core dumped)<br>2016/01/20 18:17:29 [alert] 3520#0: worker process 3551 exited on signal 11 (core dumped)<br>2016/01/20 18:17:29 [alert] 3520#0: worker process 3553 exited on signal 11 (core dumped)<br>2016/01/20 18:17:29 [alert] 3520#0: worker process 3555 exited on signal 11 (core dumped)<br><br><br></div><div>Can  you guys please how to over come this issue <br></div><div> <br></div></div></div>