#
MaxRequestsPerChild 100
#
#Listen 3000
#Listen 12.34.56.78:80
Listen 80
#
Port 80
#
User apache
Group apache
#
UserDir public_html
#
DirectoryIndex index.html index.htm index.shtml index.php index.php4 index.php3 index.cgi
#
AccessFileName .htaccess
#
UseCanonicalName On
#
DefaultType text/plain
#
HostnameLookups Off
#
ServerSignature On
ReadmeName README.html
HeaderName HEADER.html
#
AddLanguage en .en
AddLanguage fr .fr
AddLanguage de .de
AddLanguage da .da
AddLanguage el .el
AddLanguage it .it
AddLanguage ja .ja
AddCharset EUC-JP .euc
AddCharset ISO-2022-JP .jis
AddCharset SHIFT_JIS .sjis
#
#To use CGI scripts:

AddHandler cgi-script .cgi .pl

#

NameVirtualHost 192.168.0.x

 <VirtualHost 192.168.0.x:80>
 ServerName you.servers.net
 DocumentRoot /home/httpd/html
 ScriptAlias /cgi-bin/ /home/httpd/html/cgi-bin/
 Alias /cgi-bin/ /home/httpd/html/cgi-bin/
 <Directory /home/httpd/html>
 AllowOverride None
 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
 Order allow,deny
 Allow from all
 </Directory>
 </VirtualHost>

 <VirtualHost 192.168.0.x:80>
 ServerName a.servers.net
 DocumentRoot /home/a/public_html
 ScriptAlias /cgi-bin/ /home/a/public_html/cgi-bin/
 Alias /cgi-bin/ /home/a/public_html/cgi-bin/
 <Directory /home/a/public_html>
 AllowOverride None
 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
 Order allow,deny
 Allow from all
 </Directory>
 </VirtualHost>

 <VirtualHost 192.168.0.x:80>
 ServerName z.servers.net
 DocumentRoot /home/z/public_html
 ScriptAlias /cgi-bin/ /home/z/public_html/cgi-bin/
 Alias /cgi-bin/ /home/z/public_html/cgi-bin/
 <Directory /home/z/public_html>
 AllowOverride None
 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
 Order allow,deny
 Allow from all
 </Directory>
 </VirtualHost>
#