# Use name-based virtual hosting.
#
NameVirtualHost *:80
#
# NOTE: NameVirtualHost cannot be used without a port specifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#
# ServerAdmin [email protected]
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#
ServerName www.faderlaw.com
DocumentRoot /home/faderlaw/website
ErrorLog /home/faderlaw/logs/fader_logs
ServerName www.ostashen-consulting.com
#ServerAlias ostashen-consulting.net ostashen-consulting.org ostashen-consulting.biz ostashen-consulting.info ostashenconsulting.net ostashenconsulting.com ostashenconsulting.org ostashenconsulting.biz ostashenconsulting.info
DocumentRoot /home/ostashenconsulting/website
ErrorLog /home/ostashenconsulting/logs/ostashenconsulting_logs
ServerName www.albertchin.com
DocumentRoot /home/albertchin/website
ErrorLog /home/albertchin/logs/albertchin_logs
|