Skip to content

Instantly share code, notes, and snippets.

@maxdmyers
Forked from fideloper/vhost.conf
Created February 26, 2014 15:15
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 maxdmyers/9231291 to your computer and use it in GitHub Desktop.
Save maxdmyers/9231291 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerName 192.168.33.10.xip.io
DocumentRoot /vagrant
<Directory /vagrant>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/192.168.33.10.xip.io-error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/192.168.33.10.xip.io-access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment