Skip to content

Instantly share code, notes, and snippets.

@dead23angel
Created March 3, 2014 13:53
Show Gist options
  • Save dead23angel/9325331 to your computer and use it in GitHub Desktop.
Save dead23angel/9325331 to your computer and use it in GitHub Desktop.
server {
server_name www.coderweb.ru coderweb.ru;
access_log /var/www/coderweb.ru/logs/access.log;
error_log /var/www/coderweb.ru/logs/error.log;
root /var/www/coderweb.ru/public_html;
location / {
index index.html index.htm index.php;
}
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/coderweb.ru/public_html$fastcgi_script_name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment