Skip to content

Instantly share code, notes, and snippets.

@zeljic
Created November 27, 2016 21:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeljic/8b43ad1ca756cb4e4072cdae4060aa90 to your computer and use it in GitHub Desktop.
Save zeljic/8b43ad1ca756cb4e4072cdae4060aa90 to your computer and use it in GitHub Desktop.
Windows Apache Virtual Host for Laravel 5.3
<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