Skip to content

Instantly share code, notes, and snippets.

@earvinpiamonte
Created September 8, 2019 05:23
Show Gist options
  • Save earvinpiamonte/c1ff1cdf45991f262f5a8aa1946cf345 to your computer and use it in GitHub Desktop.
Save earvinpiamonte/c1ff1cdf45991f262f5a8aa1946cf345 to your computer and use it in GitHub Desktop.
Eg. virtual host file
<VirtualHost 127.0.1.2:80>
ServerName laravel-app
DocumentRoot /var/www/html/laravel-app
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /var/www/html/laravel-app>
Options All
AllowOverride All
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment