08-26-2011, 09:41 PM
How do I setup Google SEO plugin on Nginx webserver Whenever it's activated it says "Not found" and when I try to do the edits it says "It works"
Here's my nginx.conf file:
Here's my nginx.conf file:
Code:
user www-data;
worker_processes 1;
worker_rlimit_nofile 20480;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 50000;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
tcp_nodelay on;
server_names_hash_bucket_size 33;
gzip on;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}