Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save miguelcperez/cbcf9e79c183512d826196bcbe77431a to your computer and use it in GitHub Desktop.
Save miguelcperez/cbcf9e79c183512d826196bcbe77431a to your computer and use it in GitHub Desktop.
Virtual Host Laravel
<VirtualHost *:80>
ServerName blog.app
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/blog/public
<Directory /var/www/html/blog/public>
Options Indexes FollowSymLinks MultiViews
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