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
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
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
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
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
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
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
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
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
__