How to configure SSL with IPlanet Server 6.1 SP4
Hi, I am trying to configure the Sun Java System Server to work as an reverse proxy server. Can anyone help me with the steps to configure SSL. port. Is it supported? The application is deployed on Websphere 6.1 and IPlanet Server ver. 6.1 SP4. is like a proxy server.
I added Listener port with Security=on but its not working
Thanks in advance
Joe
null
# 2
As b00m3r has said, first you must install the certificate, then you must add Listener port with Security=on and assign it your cert. Your server run now in ssl mode.
For proxy server you must install the passthrough plugin and configure the following files, something like this:
-- magnus.conf -
Init fn="load-modules" shlib="/opt/SUNWwbsvr/plugins/passthrough/libpassthrough.so"
obj.conf -
<Object name="default">
[...]
NameTrans fn="assign-name" from="/myAPP(|/*)" name="proxyAPP"
[...]
</Object>
<Object name="proxyAPP">
service fn="service-passthrough" servers="http://websphere.server.tld"
</Object>