rendered paste bodyvhosts
_________________________________________________________-
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/*;
}