Skip to content

Instantly share code, notes, and snippets.

@davidchc
Created February 24, 2020 14:44
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 davidchc/e00565ae48a8a71af2dd7c4f7f77d599 to your computer and use it in GitHub Desktop.
Save davidchc/e00565ae48a8a71af2dd7c4f7f77d599 to your computer and use it in GitHub Desktop.
virtualhost de exemplo no XAMPP - https://blog.mxcursos.com/criar-virtual-host-com-xampp
<VirtualHost *:80>
ServerAdmin webmaster@local.projeto.com
DocumentRoot "C:/xampp/htdocs/projeto"
ServerName local.projeto.com
ErrorLog "logs/local.projeto.com-error.log"
CustomLog "logs/local.projeto.com--access.log" common
<Directory "C:/xampp/htdocs/projeto">
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