Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NameVirtualHost *:80
- <VirtualHost __default__:80>
- ServerAdmin info@localhost
- ServerName localhost
- DocumentRoot C:/www/localhost
- <Directory C:/www/localhost>
- Options FollowSymLinks
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
- ErrorLog logs/localhost_error.log
- LogLevel warn
- CustomLog C:/apache22/logs/localhostaccess.log combined
- </VirtualHost>
- <VirtualHost *:80>
- ServerAdmin [email protected]
- ServerName firstdomain.com
- ServerAlias www.firstdomain.com
- DocumentRoot C:/www/firstdomain
- <Directory C:/www/firstdomain>
- Options FollowSymLinks
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
- ErrorLog logs/firstdomain_error.log
- LogLevel warn
- CustomLog C:/apache22/logs/firstdomain_access.log combined
- </VirtualHost>
- <VirtualHost *:80>
- ServerAdmin [email protected]
- ServerName seconddomain.com
- ServerAlias www.seconddomain.com
- DocumentRoot C:/www/seconddomain
- <Directory C:/www/seconddomain>
- Options FollowSymLinks
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
- ErrorLog logs/seconddomain_error.log
- LogLevel warn
- CustomLog C:/apache22/logs/seconddomain_access.log combined
- </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement