Skip to content

Instantly share code, notes, and snippets.

@JasonMKurtz
Created April 7, 2013 02:12
Show Gist options
  • Save JasonMKurtz/5328571 to your computer and use it in GitHub Desktop.
Save JasonMKurtz/5328571 to your computer and use it in GitHub Desktop.
server {
listen 198.211.104.30:80; ## listen for ipv4; this line is default and implied
root /home/ziber/public_html/load.liber.in/;
index index.html index.htm index.php;
server_name load.liber.in;
location / {
# try_files $uri $uri/;
# proxy_pass http://nodes;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
2013/04/06 22:10:12 [error] 22618#0: *160 open() "/home/ziber/public_html/load.liber.in/favicon.ico" failed (2: No such file or directory), client: 192.245.87.12, server: load.liber.in, request: "GET /favicon.ico HTTP/1.1", host: "load.liber.in"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment