Created
May 31, 2011 04:47
-
-
Save Cameron-D/999882 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
All IPs: | |
<VirtualHost *:80> | |
DocumentRoot /home/example/www | |
ServerName example.com www.example.com | |
</VirtualHost> | |
Specific IP: | |
<VirtualHost 172.16.11.10:80> | |
DocumentRoot /home/example/www | |
ServerName example.com www.example.com | |
</VirtualHost> | |
Windows: | |
<VirtualHost 172.16.11.10:80> | |
DocumentRoot C:\something\www | |
ServerName example.com www.example.com | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment