mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-01-26 00:42:22 +01:00
11 lines
349 B
Django/Jinja
11 lines
349 B
Django/Jinja
server {
|
|
listen {{ldap_secure_internet_port}} ssl;
|
|
proxy_pass 127.0.0.1:{{ldap_localhost_port}};
|
|
|
|
# SSL Configuration for LDAPS
|
|
ssl_certificate /etc/letsencrypt/live/{{domain}}/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/{{domain}}/privkey.pem;
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
}
|