Nginx Wordpress FastCGI slow load after header

I just got a Linode and am trying to migrate my stuff over from my other server and I have nginx with fastcgi and mysql

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

Can you also post the configuration for your site? What the last "include" is trying to include – i.e., /etc/nginx/sites-available/default or whatever you have named the site.

WOOT I have figured it out – seems as tho the plugin for wordpress HATES the way things are processed the exact plugin is "NextGEN Gallery"

I disabled that plugin and now it FLIES :)

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct