-
-
Save amalichev/a0eba3a634b11e927ffd013d3b8cdfc9 to your computer and use it in GitHub Desktop.
Laravel Virtual Host for Apache Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment