Update 1.3.8 -> 6.1: app1.domain.com/... -> serverapp1/...
serverapp3
2 of them are Websphere Application Server. For these 2 ones i have 2 vhosts sections for every server. one for port 80 and one for port 443.
Here the vhost configuration for serverapp1:
{code}
ServerName app1.domain.com
DocumentRoot "C:/Program Files/IBM/IBM HTTP Server/htdocs"
ProxyRequests Off
ProxyPass /wcs/ [url]http://serverapp1/wcs/[/url]
ProxyPassReverse /wcs/ [url]http://serverapp1/wcs/[/url]
ProxyPass /webapp/ [url]http://serverapp1/webapp/[/url]
ProxyPassReverse /webapp/ [url]http://serverapp1/webapp/[/url]
ProxyPass /wcsstore/ [url]http://serverapp1/wcsstore/[/url]
ProxyPassReverse /wcsstore/ [url]http://serverapp1/wcsstore/[/url]
ErrorLog logs/error.log
CustomLog logs/access.log combined
SSLClientAuth none
ServerName app1.domain.com
DocumentRoot "C:/Program Files/IBM/IBM HTTP Server/htdocs-ssl"
SSLV2Timeout 100
SSLV3Timeout 200
SSLEnable
ProxyRequests Off
ProxyPass /wcs/ [url]https://serverapp1/wcs/[/url]
ProxyPassReverse /wcs/ [url]https://serverapp1/wcs/[/url]
ProxyPass /webapp/ [url]https://serverapp1/webapp/[/url]
ProxyPassReverse /webapp/ [url]https://serverapp1/webapp/[/url]
ProxyPass /wcsstore/ [url]https://serverapp1/wcsstore/[/url]
ProxyPassReverse /wcsstore/ [url]https://serverapp1/wcsstore/[/url]
ErrorLog logs/error.log
CustomLog logs/access.log combined
{code}
My problem is, after i try
[url]http://app1.domain.com/[/url]...
i get the internal servername in the address:
[url]http://serverapp1/[/url]...
For internal use it's no problem, because the internal server name is known. But from outside...
Any idea? In Version 1.3.8 everything works fine :-(
Thanks in advance,
Christopher