Skip to content

Instantly share code, notes, and snippets.

@varmad
Created November 29, 2013 09:05
Show Gist options
  • Save varmad/7703189 to your computer and use it in GitHub Desktop.
Save varmad/7703189 to your computer and use it in GitHub Desktop.
Laravel Nginx configuration
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default_server ipv6only=on; ## listen for ipv6
root /path/to/web/directory/laravel-project-directory/public;
index index.php index.html index.htm;
server_name .servername.com;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.php?$query_string;
}
# pass the PHP scripts to FastCGI server
location ~ \.php$ {
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment