Created
November 27, 2016 21:03
-
-
Save zeljic/8b43ad1ca756cb4e4072cdae4060aa90 to your computer and use it in GitHub Desktop.
Windows Apache Virtual Host for Laravel 5.3
This file contains 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> | |
ServerAdmin admin@admin.com | |
DocumentRoot "__LARAVEL_PUBLIC_DIR__" | |
ServerName dev | |
ErrorLog "logs/dev-error.log" | |
CustomLog "logs/dev-access.log" common | |
<Directory "__LARAVEL_PUBLIC_DIR__"> | |
Options Indexes FollowSymLinks | |
AllowOverride All | |
Require all granted | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment