Re: Loadable runtime modules?

2014-02-19 Thread Sylvia
Hi. Maybe you need Tengine, its a fork of NGINX http://tengine.taobao.org/ ~GL Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247763,247765#msg-247765 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: limit_req for spiders only

2013-10-14 Thread Sylvia
Hello. Doesnt robots.txt "Crawl-Delay" directive satisfy your needs? Normal spiders should obey robots.txt, if they dont - they can be banned. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,243670,243674#msg-243674 ___ nginx mailing list ng

Re: SSL certificate chain

2013-09-01 Thread Sylvia
Hi. You can try to run a diagnostics for problem discovery and recommendations https://www.ssllabs.com/ssltest/ Posted at Nginx Forum: http://forum.nginx.org/read.php?2,242410,242417#msg-242417 ___ nginx mailing list nginx@nginx.org http://mailman.ngi

Re: Can't get SPDY working with OpenSSL 1.0.1e

2013-07-30 Thread Sylvia
Hi. If you compile nginx yourself, its not necessary to update system libraries You can use openssl 1.0.1 source and use --with-openssl=/var/tmp/openssl-1.0.1e switch to configure options, where folder is the path where you unpacked the source, nginx will configure and compile openssl as static lib

Re: update NGINX to v 1.4.1

2013-07-10 Thread Sylvia
download, put file into target machine install/upgrade with dpkg -i Posted at Nginx Forum: http://forum.nginx.org/read.php?2,240720,240725#msg-240725 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: spdy per location

2013-07-08 Thread Sylvia
Hello. It works like this: 1. accept tcp connection 2. establish ssl session a) presenting first certificate b) optional: present 2nd certificate for desired virtual host via SNI extension 3. NPN (next protocol negotiation), enabling SPDY --- 4. requesting content i dont think there is

Re: SPDY certificates and Wordpress multisite

2013-05-27 Thread Sylvia
regarding recompile question: SPDY is supported with OpenSSL 1.0.1 so if your distro using earlier version, SPDY will not be supported, you can check "nginx -V" if SPDY been enabled. When recompiling you can use openssl source package and link it statically to nginx if needed --with-http_spdy_mod

Re: file upload with php-fpm

2013-05-04 Thread Sylvia
hi. nginx.conf: client_max_body_size 42m; php.ini: memory_limit = 64M post_max_size = 40M upload_max_filesize = 32M it works fine for me with that settings. I havent speficied any timeout settings you used. Have you edited php.ini for php-fpm? If not - default upload file size is 2M Posted

Re: Wordpress RSS pages dont work with Nginx

2013-04-28 Thread Sylvia
Hi. Are you using Wp-Super-Cache or similar plugin? Check either - 1) disable caching for is_feed 2) Don’t cache pages with GET parameters. (?x=y at the end of a url) Posted at Nginx Forum: http://forum.nginx.org/read.php?2,238692,238695#msg-238695 __