Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: LDAP to LDAPS using Apache HTTPd server |
|
Author |
|
RKI
Joined: 18 Aug 2014 Posts: 1 Location: UK,Leeds
|
Posted: Fri 22 Aug '14 12:12 Post subject: LDAP to LDAPS using Apache HTTPd server |
|
|
Hi All,
Please can you'll help me with the problem below. Thanks in advance.
I am adding some more details which I have forgot to mention
Apache version - 2.4
Operating System - Windows but will move on to Solaris 10
I have a java program which would make call to an LDAP server on port 389. I would like to know if I can use Apache to convert this LDAP call to LDAPS or LDAP over SSL calls. When converted to LDAPs calls I will set up the LDAP server to handle LDAPs call on default LDAPS port.
I have done the same for HTTP to HTTPs with the below configurations in Apache. Can I use something similar for my problem. If yes please can you'll tell me how that would that be possible. Also is it necessary to have certificate for the below configurations.
<VirtualHost *:80>
#ServerAdmin webmaster@dummy-host2.example.com
#DocumentRoot "c:/Apache24/docs/dummy-host2.example.com"
ServerName first.apache.com
SSLEngine on
SSLProxyEngine On
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLCertificateFile C:\Apache24\conf\apache.crt
SSLCertificateKeyFile C:\Apache24\conf\apache.key
ProxyPass /TestServ/FirstServlet https://first.ri.com:8443/TestServ/FirstServlet
ProxyPassReverse /TestServ/FirstServlet https://first.ri.com:8443/TestServ/FirstServlet
ErrorLog "logs/first.apache.error.log"
CustomLog "logs/first.apache.access.log" common
</VirtualHost>
Thanks,
RKI. |
|
Back to top |
|
|
|
|
|
|