All pastes #2046606 Raw Edit

Untitled

public text v1 · immutable
#2046606 ·published 2011-04-15 00:18 UTC
rendered paste body
vhosts
_________________________________________________________-
server {
        listen  80;
        server_name  localhost;

        location / {
            root   /usr/local/www/gridite;
            index  index.php index.html index.htm;
        }

        location ~ \.php$ {
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
                fastcgi_param PATH_INFO $fastcgi_script_name;
                include        /usr/local/etc/nginx/fastcgi_params;
        }


        location ~ /\.ht {
            deny  all;
        }
}
______________________________________________________________________
nginx.conf
-----------------------------------------------------------------------------------------
user  www www;
worker_processes  4;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

#Virtual Hosts
        include /usr/local/etc/nginx/vhosts/*;

}