Skip to content

Instantly share code, notes, and snippets.

View selenearzola's full-sized avatar
:atom:

Selene Arzola selenearzola

:atom:
View GitHub Profile
@selenearzola
selenearzola / .env
Created April 13, 2017 17:42
Mailgun Email configuration vars
MAIL_DRIVER=mailgun
MAIL_HOST=smtp.mailgun.org
MAIL_PORT=587
MAIL_ENCRYPTION=tls
MAILGUN_DOMAIN=
MAILGUN_SECRET=
@selenearzola
selenearzola / httpd-vhosts.conf
Created March 27, 2017 22:34
Vhost Windows example using xampp as LAMP Server
<VirtualHost *:80>
ServerAdmin admin@localhost.com
DocumentRoot "C:\xampp\htdocs\project-folder\public"
ServerName local.project-folder.com
ServerAlias local.project-folder.com
<Directory "C:\xampp\htdocs\project-folder">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
@selenearzola
selenearzola / laravel-project.dev.com.conf
Created January 15, 2017 17:46
Virtual Host example from the tutorial: Setting up a local Web Development Environment in Ubuntu to develop a website using Laravel Framework 5.3 hosted in https://helloselene.wordpress.com/
<VirtualHost *:80>
ServerName laravel-project.dev
ServerAlias www.laravel-project.dev
DocumentRoot /var/www/laravel-project/public
<Directory /var/www/laravel-project/public>
Options -Indexes +FollowSymLinks -MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/laravel-project-error.log