Skip to content

Instantly share code, notes, and snippets.

@zappala
Created October 20, 2015 20:33
Show Gist options
  • Save zappala/6f9546a06237e9a74be6 to your computer and use it in GitHub Desktop.
Save zappala/6f9546a06237e9a74be6 to your computer and use it in GitHub Desktop.
virtual host setup
<VirtualHost *:80>
ServerName cs360.byu.edu
DocumentRoot /var/www/cs360.byu.edu/
ErrorLog /var/log/apache2/cs360-error.log
CustomLog /var/log/apache2/cs360-access.log combined
<Directory /var/www/cs360.byu.edu>
AllowOverride Options FileInfo AuthConfig Limit Indexes
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment