Skip to content

Instantly share code, notes, and snippets.

@decodedmrq
Created November 1, 2017 18:11
Show Gist options
  • Save decodedmrq/871d9e9d184b71d433dc23b2b3e4ed31 to your computer and use it in GitHub Desktop.
Save decodedmrq/871d9e9d184b71d433dc23b2b3e4ed31 to your computer and use it in GitHub Desktop.
Laravel Virtual Host for Apache Example
<VirtualHost *:80>
DocumentRoot "/Users/myName/Projects/laravel/public"
ServerName myLaravel.dev
<Directory "/Users/myName/Projects/laravel/public">
AllowOverride All
Options FollowSymLinks +Indexes
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
@decodedmrq
Copy link
Author

Options Indexes FollowSymLinks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment