Skip to content

Instantly share code, notes, and snippets.

@marceloxp
Last active July 5, 2016 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marceloxp/6660e8c1b3b65b35ad17db427899b821 to your computer and use it in GitHub Desktop.
Save marceloxp/6660e8c1b3b65b35ad17db427899b821 to your computer and use it in GitHub Desktop.
Apache Virtual Host
<VirtualHost 127.0.0.1>
ServerAdmin webmaster@www.cake3.local.com.br
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