Created
June 2, 2015 21:11
-
-
Save jsc-dev/1e725c67cc3188a30351 to your computer and use it in GitHub Desktop.
Revisions
-
jsc-dev created this gist
Jun 2, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ ### note: vhost updated to apache 2.4 ### using Require all granted, Require all denied ### instead of Allow from all, Deny from all... <VirtualHost *:80> ServerName demo.dev ServerAdmin [email protected] SetEnv MY_LARAVEL_ENV "local" DocumentRoot /home/icke/www/laravel/public DirectoryIndex index.php index.htm index.html <Directory "/home/icke/www/laravel/public"> Options Indexes FollowSymLinks Order deny,allow AllowOverride All Require all granted </Directory> # RewriteEngine On AddDefaultCharset UTF-8 </virtualHost>