All pastes #2049979 Raw Edit

Miscellany

public css v1 · immutable
#2049979 ·published 2011-04-24 01:54 UTC
rendered paste body
user  nobody;worker_processes  1;events {    worker_connections  1024;}http {    include       mime.types;    default_type  application/octet-stream;    sendfile        on;    keepalive_timeout  65;    server {        listen       80;        server_name  localhost;        location / {            root   /usr/local/nginx/html;            index  index.php index.html index.htm;        }        error_page   500 502 503 504  /50x.html;        location = /50x.html {            root   /usr/local/nginx/html;        }        location ~ \.php$ {            root           html;            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx/html$fastcgi_script_name;            include        fastcgi_params;        }    }}