Skip to content

Instantly share code, notes, and snippets.

@RenzoTejada
Last active September 3, 2016 18:41
Show Gist options
  • Save RenzoTejada/5794094 to your computer and use it in GitHub Desktop.
Save RenzoTejada/5794094 to your computer and use it in GitHub Desktop.
Virtualhost en linux - Ubuntu - Configuracion
<VirtualHost *:80>
ServerAdmin admin@admin.com
ServerName prueba.local
DocumentRoot /home/renzo/Proyectos/virtualhost/prueba/
<Directory /home/renzo/Proyectos/virtualhost/prueba/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/prueba.local-error.log
CustomLog ${APACHE_LOG_DIR}/prueba.local-access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment