Skip to content

Instantly share code, notes, and snippets.

/Site Secret

Created November 20, 2014 18:33
Show Gist options
  • Save anonymous/d60efd938d9d7d7de60e to your computer and use it in GitHub Desktop.
Save anonymous/d60efd938d9d7d7de60e to your computer and use it in GitHub Desktop.
mySite
ServerName localhost
<VirtualHost *:25878>
ServerAdmin webmaster@localhost
DocumentRoot /home/vagrant/www/
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /home/vagrant/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment