Skip to content

Instantly share code, notes, and snippets.

@andersao
Created February 4, 2015 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andersao/dbe76ee6d026f7c990ee to your computer and use it in GitHub Desktop.
Save andersao/dbe76ee6d026f7c990ee to your computer and use it in GitHub Desktop.
Nginx Vhost Vagrant
server {
listen 80;
root /home/vagrant/www/example.local;
index index.php index.html index.htm;
server_name example.local;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment