14 lines
295 B
Text
14 lines
295 B
Text
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name ldap.{{ domain }};
|
|
|
|
include /etc/nginx/snippets/authelia-location.conf;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:{{ ports['lldap'] }};
|
|
|
|
include /etc/nginx/snippets/authelia-authrequest.conf;
|
|
}
|
|
}
|