That's great! I am not using this for SSL, but rather I want a second
webapp folder for staging and want to use the same named URL but with
different IP adresses and choose which webapps folder to use based on
IP, regardless of name.
So just as you said, I added useIPVHosts="true" to my connector such
that:
maxSpareThreads="75"
redirectPort="443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"
useIPVHosts="true"/>
Then I added set the virtual hosts such that:
xmlValidation="false" xmlNamespaceAware="false"> ...
xmlValidation="false" xmlNamespaceAware="false"> ...
Then I made the following additions to my hosts file:
192.168.12.201 staging.mywebserver.com
[my outside ipaddress] deploy.mywebserver.com
Now whenever I test, I just set my client's hosts file to:
192.168.12.201 deploy.mywebserver.com
And I can test without disrupting my deployment server.
Thanks!
Jim