Skip to content

Instantly share code, notes, and snippets.

View perezale's full-sized avatar

Alejandro Pérez perezale

View GitHub Profile
@perezale
perezale / sample-nginx.conf
Created June 25, 2017 04:31 — forked from dimitardanailov/sample-nginx.conf
Configuration for Laravel 5 application and Nginx
server {
listen 80 default deferred;
server_name laravel-application.com;
# http://nginx.org/en/docs/http/ngx_http_log_module.html#access_log
access_log /var/www/laravel-app/access.log;
error_log /var/www/laravel-app/error.log;
root /var/www/laravel-app/public/;