Skip to content

Instantly share code, notes, and snippets.

@mariapaulinar
Last active September 27, 2017 14:01
Show Gist options
  • Save mariapaulinar/601192ff50f336ad8369f602c41ebc75 to your computer and use it in GitHub Desktop.
Save mariapaulinar/601192ff50f336ad8369f602c41ebc75 to your computer and use it in GitHub Desktop.
Configurar un virtualhost en apache
<VirtualHost *:80>
ServerName myapp.localhost.com
DocumentRoot "/home/vagrant/projects/myapp/public"
<Directory "/home/vagrant/projects/myapp/public">
AllowOverride all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment