Hi Michael,
depends on your use case.
If you know the IP-Adresses of your external service, then you could just open the firewall for these special IPs on port 7636 (secure ldap).
If you want to deal with an extra proxy, you could use nginx or stunnel4 for that.
an untested nginx-config could look like:
# /etc/nginx/nginx.conf
[...]
stream {
upstream stream_backend {
UCS_SERVER:7636;
}
server {
listen 636 ssl;
proxy_pass stream_backend;
ssl_certificate /etc/ssl/certs/server.crt;
ssl_certificate_key /etc/ssl/certs/server.key;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_session_cache shared:SSL:20m;
ssl_session_timeout 4h;
ssl_handshake_timeout 30s;
}
}
<<<FILE END>>>
kind regards, Daniel