11 messages in ru.sysoev.nginxphpSysInfo 2.5.4 slow with nginx 0.6....
FromSent OnAttachments
Robert GabrielOct 1, 2008 1:26 am 
Georgi HristozovOct 1, 2008 11:27 pm 
Robert GabrielOct 2, 2008 12:02 am 
Georgi HristozovOct 5, 2008 1:30 am 
Robert GabrielOct 5, 2008 2:20 am 
Georgi HristozovOct 5, 2008 2:36 am 
Robert GabrielOct 5, 2008 2:49 am 
Robert GabrielOct 5, 2008 3:02 am 
Rob SchultzOct 5, 2008 7:07 am 
Robert GabrielOct 5, 2008 7:19 am 
Robert GabrielOct 5, 2008 7:39 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:phpSysInfo 2.5.4 slow with nginx 0.6.32 and php-fpmActions...
From:Robert Gabriel (lis@ruby-forum.com)
Date:Oct 1, 2008 1:26:32 am
List:ru.sysoev.nginx

Hi, Im running a web server with nginx 0.6.32, php-fpm, on Ubuntu server 8.04. The system configuration is: Intel Pentium D 3.2, 4GB DDR2, 200GB disk and a 20MBit connection. Every php script works quiet fast, but phpSysinfo its really slow, seems to take like 3 sec to load, but when I was running apache with mod_php it was working fast also.

Here is my configuration of nginx.conf and the info vhost:

user www-data; worker_processes 2;

pid /var/run/nginx.pid; error_log /var/log/nginx/error_log info;

events { worker_connections 2048; use epoll; }

http { include /etc/nginx/mime.types; default_type application/octet-stream; fastcgi_buffer_size 4k; client_body_buffer_size 64k; server_tokens off; server_names_hash_bucket_size 64; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 20; gzip on; gzip_proxied any; gzip_comp_level 4; gzip_types text/plain text/css text/xml application/xml text/javascript text/html application/x-javascript;

include /etc/nginx/sites-enabled/*; include /etc/nginx/sites-users/*; include /etc/nginx/sites-virtual/*; }

server { listen 80; server_name info.example.org *.info.example.org;

access_log /var/log/nginx/info-access_log; error_log /var/log/nginx/info-error_log;

location / { root /srv/www/example.org/info; index index.php index.html index.htm; }

location ~ .*\.php$ { fastcgi_pass 127.0.0.1:50000; fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME /srv/www/example.org/info$fastcgi_script_name; fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_TYPE $content_type; fastcgi_param CONTENT_LENGTH $content_length; fastcgi_param REQUEST_URI $request_uri; fastcgi_param DOCUMENT_URI $document_uri; fastcgi_param DOCUMENT_ROOT $document_root; fastcgi_param SERVER_PROTOCOL $server_protocol; fastcgi_param REMOTE_ADDR $remote_addr; fastcgi_param REMOTE_PORT $remote_port; fastcgi_param SERVER_ADDR $server_addr; fastcgi_param SERVER_PORT $server_port; fastcgi_param SERVER_NAME $server_name; # PHP only, required if PHP was built with --enable-force-cgi-redirect fastcgi_param REDIRECT_STATUS 200;

}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /var/www/nginx-default; }

Also php-fpm is setup with 5 children, if it matters or not.