Last active
July 5, 2016 17:55
-
-
Save marceloxp/6660e8c1b3b65b35ad17db427899b821 to your computer and use it in GitHub Desktop.
Apache Virtual Host
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 127.0.0.1> | |
ServerAdmin [email protected] | |
DocumentRoot "C:/um/xampp/projetos/git/job0003_cakephp3" | |
ServerName www.cake3.local.com.br | |
ErrorLog "logs/www.cake3.local.com.br-error.log" | |
CustomLog "logs/www.cake3.local.com.br-access.log" common | |
<Directory "C:/um/xampp/projetos/git/job0003_cakephp3"> | |
Options FollowSymLinks Indexes | |
AllowOverride All | |
Order deny,allow | |
Allow from 127.0.0.1 | |
Deny from all | |
Require all granted | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment