nginx is coping with its share of connecyions, but the php manager is overloaded. Raise the resources there. HTH, Gerardoby GerMalaz - Other discussion
Thanks for the answers and suggestions! Gerardoby GerMalaz - Php-fpm Mailing List - English
Hello! Is there any way to log the name of the scripts which are executed? Intended to use it remotely, so no web server logs (in the php-fpm server). Thanks, Gerardoby GerMalaz - Php-fpm Mailing List - English
In nginx.conf limit_zone xxxxxx $binary_remote_addr 1M; limit_req_zone $binary_remote_addr zone=xxxxxx_freq:1M rate=30r/m; In site definition limit_conn xxxxxx 3; limit_req zone=xxxxxx_freq burst=1 nodelay; First connection usually gets a 503, subsequent ones work. First connection usually refers to a dir without / final, then another with / is requested,by GerMalaz - Nginx Mailing List - English
Igor Sysoev Wrote: ------------------------------------------------------- > On Wed, Dec 02, 2009 at 04:20:14AM -0500, GerMalaz > wrote: > > > Any chance to allow > > > > listen 443 ssl; > > > > this is, NO "default", if SNI is available? > > I do not understand what do you want to reach, but > since 0.8.21 nginx > allowby GerMalaz - Nginx Mailing List - English
Any chance to allow listen 443 ssl; this is, NO "default", if SNI is available? Thanks, Gerardoby GerMalaz - Nginx Mailing List - English
Hello! I have to limit conns in an specific location of the website. Aditionally, in this location are php files. There is a location ~ \.php$ section, but that can't be limited globally. There is a location /specific/ section, but that does not affect php files. And if location ^~ /specific/ section, then can't access the php files. What is the best way to exprby GerMalaz - Nginx Mailing List - English