Hello.<div><br></div><div>Testing spdy + eval + memcached module for our deployment. Without spdy this works fine. Worker processes die with following configuration:</div><div><br></div><div><div># cat /etc/nginx/nginx.conf </div>
<div>user              nginx;</div><div>worker_processes  1;</div><div><br></div><div>worker_rlimit_nofile    2048;</div><div><br></div><div>error_log  /var/log/nginx/error.log debug;</div><div><br></div><div>pid        /var/run/nginx.pid;</div>
<div><br></div><div>events {</div><div>    worker_connections  1024;</div><div>}</div><div><br></div><div>worker_rlimit_core  500M;</div><div>working_directory   /tmp/dumps/;</div><div><br></div><div>http {</div><div>    include       /etc/nginx/mime.types;</div>
<div>    default_type  application/octet-stream;</div><div><br></div><div>    access_log  /var/log/nginx/access.log;</div><div><br></div><div>    sendfile        on;</div><div>    keepalive_timeout  70;</div><div><br></div>
<div>    ssl_session_cache    shared:SSL:10m;</div><div>    ssl_session_timeout  10m;</div><div><br></div><div>    server {</div><div>        listen  443 ssl spdy;</div><div>        ssl_certificate ssl/ca.crt;</div><div>        ssl_certificate_key     ssl/ca.key;</div>
<div><br></div><div>        location / {</div><div>    eval_escalate                       on;</div><div>    eval $auth_cookie_value {</div><div>        set                             $memcached_key $host-$cookie_abc;</div>
<div>        memcached_next_upstream         error timeout invalid_response not_found;</div><div>        memcached_pass                  <a href="http://192.168.0.55:11211">192.168.0.55:11211</a>;</div><div>    }</div><div>
        proxy_pass                      <a href="http://192.168.0.158:8081">http://192.168.0.158:8081</a>;</div><div>}</div><div>    }</div><div>}</div></div><div><br></div><div><div>Linux hostname 2.6.32-279.el6.x86_64 #1 SMP Thu Jun 21 15:00:18 EDT 2012 x86_64 x86_64 x86_64 GNU/Linux</div>
</div><div><br></div><div><div>error.log:</div><div>2012/12/21 15:53:12 [notice] 16252#0: start worker process 16273</div><div>2012/12/21 15:53:22 [info] 16273#0: *20 SSL NPN ADVERT while SSL handshaking, client: 192.168.3.70, server: </div>
<div>2012/12/21 15:53:22 [notice] 16252#0: signal 17 (SIGCHLD) received</div><div>2012/12/21 15:53:22 [alert] 16252#0: worker process 16273 exited on signal 11 (core dumped)</div><div>2012/12/21 15:53:22 [notice] 16252#0: start worker process 16275</div>
</div><div><br></div><div><div># /usr/sbin/nginx -V</div><div>nginx version: nginx/1.3.9</div><div>built by gcc 4.4.6 20120305 (Red Hat 4.4.6-4) (GCC) </div><div>TLS SNI support enabled</div><div>configure arguments: --prefix=/etc/nginx/ --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_gzip_static_module --with-http_random_index_module --with-http_stub_status_module --with-openssl=/tmp/openssl101-1.0.1c --with-cc-opt='-O0 -g -I/opt/openssl101/include' --with-ld-opt=-L/usr/openssl101/lib --add-module=/home/bld/rpmbuild/BUILD/nginx-1.3.9/nginx_eval_module-1.0.1</div>
</div><div><br></div>