Nginx Wordpress FastCGI slow load after header
The software I run is wordpress and the problem is the website loads SLOW
Like the header (title) updates with the next page name but then i have to wait like 15 sec - 30 sec for the page to completely load I have checked the error page and there is nothing there but an error for favicon missing but that shouldnt be causing it…..
Anyone have any ideas????? I am at a loss…. Here is my config
user http http;
worker_processes 2;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay off;
keepalive_timeout 5;
gzip on;
gzip_comp_level 2;
gzip_proxied any;
gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
include /etc/nginx/sites-enabled/*;
}
2 Replies
I disabled that plugin and now it FLIES