Created
February 26, 2013 18:11
-
-
Save ekala/5040669 to your computer and use it in GitHub Desktop.
Sample Apache VirtualHost Configuration File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Virtual host configuration for piercecounty.swiftapp.com | |
# | |
<VirtualHost *:80> | |
ServerName piercecounty.swiftapp.com | |
ServerAdmin [email protected] | |
CustomLog /opt/vhosts/domains/piercecounty.swiftapp.com/logs/access.log combined | |
ErrorLog /opt/vhosts/domains/piercecounty.swiftapp.com/logs/error.log | |
DocumentRoot /opt/vhosts/domains/piercecounty.swiftapp.com/web | |
<Directory /> | |
Options -Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
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