|
Home > Archive > WebSphere HTTP Server > December 2005 > What Document Root in the virtual host specifies (<VirtualHost *:443>)
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
What Document Root in the virtual host specifies (<VirtualHost *:443>)
|
|
|
| Hi,
Below is my virtual host tag.
I want to know wat significance the DocumentRoot has, as shown below in the tag.I am not very clear about it.
<VirtualHost *:443>
ServerName www.scotiaconnectdev.scotiabank.com
ServerAlias scotiaconnectdev.scotiabank.com *.scotiaconnectdev.scotiabank.com
DocumentRoot "C:\program files\ibm http server/docroot"
ErrorLog logs/scotiaconnectdev.com-error.log
TransferLog logs/scotiaconnectdev.com-access.log
SSLClientAuth none
SSLEnable
</VirtualHost>
| |
| Sunit Patke 2005-12-06, 8:53 pm |
| DocumentRoot specifies where the root directory for the virtual host is:
e.g. In your case https://www.scotiaconnectdev.scotiabank.com/index.html
will be loaded from C:\program files\ibm http server/docroot directory
https://www.scotiaconnectdev.scotia...ges/myimage.gif will be
loaded from C:\program files\ibm http server/docroot/images directory and so
on and so forth.
Sunit
<abhay@math.net> wrote in message
news:1176665932.1133880595098.JavaMail.wassrvr@ltsgwas007.sby.ibm.com...
> Hi,
>
> Below is my virtual host tag.
>
> I want to know wat significance the DocumentRoot has, as shown below in
> the tag.I am not very clear about it.
>
> <VirtualHost *:443>
> ServerName www.scotiaconnectdev.scotiabank.com
> ServerAlias scotiaconnectdev.scotiabank.com
> *.scotiaconnectdev.scotiabank.com
> DocumentRoot "C:\program files\ibm http server/docroot"
> ErrorLog logs/scotiaconnectdev.com-error.log
> TransferLog logs/scotiaconnectdev.com-access.log
> SSLClientAuth none
> SSLEnable
> </VirtualHost>
|
|
|
|
|