mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
15 lines
456 B
Lua
15 lines
456 B
Lua
VirtualHost "{{ domain }}"
|
|
ssl = {
|
|
key = "/etc/yunohost/certs/{{ domain }}/key.pem";
|
|
certificate = "/etc/yunohost/certs/{{ domain }}/crt.pem";
|
|
}
|
|
authentication = "ldap2"
|
|
ldap = {
|
|
hostname = "localhost",
|
|
user = {
|
|
basedn = "ou=users,dc=yunohost,dc=org",
|
|
filter = "(&(objectClass=posixAccount)(mail=*@{{ domain }}))",
|
|
usernamefield = "mail",
|
|
namefield = "cn",
|
|
},
|
|
}
|