Created
September 9, 2009 03:06
-
-
Save dennyhalim/183439 to your computer and use it in GitHub Desktop.
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
UseCanonicalName Off | |
LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon | |
<Directory /www/commercial> | |
Options FollowSymLinks | |
AllowOverride All | |
</Directory> | |
<Directory /www/homepages> | |
Options FollowSymLinks | |
AllowOverride None | |
</Directory> | |
<VirtualHost 111.22.33.44> | |
ServerName www.commercial.isp.com | |
CustomLog logs/access_log.commercial vcommon | |
VirtualDocumentRoot /www/commercial/%0/docs | |
VirtualScriptAlias /www/commercial/%0/cgi-bin | |
</VirtualHost> | |
<VirtualHost 111.22.33.45> | |
ServerName www.homepages.isp.com | |
CustomLog logs/access_log.homepages vcommon | |
VirtualDocumentRoot /www/homepages/%0/docs | |
ScriptAlias /cgi-bin/ /www/std-cgi/ | |
</VirtualHost> | |
#http://httpd.apache.org/docs/2.2/vhosts/mass.html | |
#http://httpd.apache.org/docs/2.2/mod/mod_vhost_alias.html | |
#http://www.vhffs.org/wiki/doc:guide:web-hosting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment