Skip to content

Instantly share code, notes, and snippets.

View cjreysayago's full-sized avatar
😀

Carlos José Rey Sayago cjreysayago

😀
View GitHub Profile
@cjreysayago
cjreysayago / laravel
Created June 25, 2020 02:16 — forked from herusdianto/laravel
Laravel Nginx Virtual Host Example
# /etc/nginx/sites-available/laravel
server {
listen 80;
listen [::]:80 ipv6only=on;
root /var/www/html/laravel/public;
index index.php index.html index.htm;
server_name laravel.dev;