Created
September 19, 2010 01:30
-
-
Save y2kdev/586261 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# domain: YOURDOMAIN.com | |
# public: /vhosts/domains/YOURDOMAIN.com/public | |
<VirtualHost YOURIP:80> | |
# Admin email, Server Name (domain name) and any aliases | |
ServerAdmin [email protected] | |
ServerName YOURDOMAIN.com | |
ServerAlias www.YOURDOMAIN.com | |
# Index file and Document Root (where the public files are located) | |
DirectoryIndex index.html | |
DocumentRoot /vhosts/domains/YOURDOMAIN.com/public | |
# Custom log file locations | |
LogLevel warn | |
ErrorLog /vhosts/domains/YOURDOMAIN.com/log/error.log | |
CustomLog /vhosts/domains/YOURDOMAIN.com/log/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment