NameVirtualHost *:8080
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:8080>
ServerName website.localhost
ServerAdmin webmaster@test.tools.directhr.net
DocumentRoot "C:\Users\n.zhang\Documents\Website\DHR3"
<Directory "C:\Users\n.zhang\Documents\Website\DHR3">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog "logs/test.tools.directhr.net-error.log"
CustomLog "logs/test.tools.directhr.net-access.log" common
</VirtualHost>
<VirtualHost *:8080>
ServerName tools.localhost
ServerAdmin webmaster@test.tools.directhr.net
DocumentRoot "C:\Users\n.zhang\Documents\Tools"
<Directory "C:\Users\n.zhang\Documents\Tools">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog "logs/test.tools.directhr.net-error.log"
CustomLog "logs/test.tools.directhr.net-access.log" common
</VirtualHost>