d
This commit is contained in:
parent
20ef576163
commit
f5308176fe
3 changed files with 9 additions and 8 deletions
|
@ -31,7 +31,7 @@ ufw_rules:
|
|||
|
||||
### mgrote_lldap
|
||||
lldap_package_url: "https://download.opensuse.org/repositories/home:/Masgalor:/LLDAP/xUbuntu_22.04/amd64/lldap_0.5.0-1+3.1_amd64.deb"
|
||||
lldap_logging_verbose: false
|
||||
lldap_logging_verbose: "false"
|
||||
lldap_http_port: 17170
|
||||
lldap_http_host: "0.0.0.0"
|
||||
lldap_ldap_host: "0.0.0.0"
|
||||
|
@ -49,9 +49,10 @@ lldap_smtp_server: "docker10.mgrote.net"
|
|||
lldap_smtp_port: "1025"
|
||||
lldap_smtp_smtp_encryption: "NONE"
|
||||
lldap_smtp_user: "info@mgrote.net"
|
||||
lldap_smtp_enable_password_reset: true
|
||||
lldap_smtp_enable_password_reset: "true"
|
||||
# "meta vars"; daraus werden die db-url und die postgres-db abgeleitet
|
||||
lldap_db_name: "lldap"
|
||||
lldap_db_user: "lldap"
|
||||
lldap_db_pass: "{{ lookup('keepass', 'lldap_db_pass', 'password') }}"
|
||||
lldap_db_host: "localhost"
|
||||
...
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
lldap_package_url: "https://download.opensuse.org/repositories/home:/Masgalor:/LLDAP/xUbuntu_22.04/amd64/lldap_0.5.0-1+3.1_amd64.deb"
|
||||
lldap_logging_verbose: false
|
||||
lldap_logging_verbose: "false"
|
||||
lldap_http_port: "17170"
|
||||
lldap_http_host: "0.0.0.0"
|
||||
lldap_ldap_host: "0.0.0.0"
|
||||
|
@ -18,4 +18,4 @@ lldap_smtp_server: "mail.domain.net"
|
|||
lldap_smtp_port: "25"
|
||||
lldap_smtp_smtp_encryption: "NONE"
|
||||
lldap_smtp_user: "info@mgrote.net"
|
||||
lldap_smtp_enable_password_reset: true
|
||||
lldap_smtp_enable_password_reset: "true"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{{ file_header | default () }}
|
||||
## Tune the logging to be more verbose by setting this to be true.
|
||||
## You can set it with the LLDAP_VERBOSE environment variable.
|
||||
verbose="{{ lldap_logging_verbose }}"
|
||||
verbose={{ lldap_logging_verbose }}
|
||||
|
||||
## The host address that the LDAP server will be bound to.
|
||||
## To enable IPv6 support, simply switch "ldap_host" to "::":
|
||||
|
@ -20,7 +20,7 @@ http_host = "{{ lldap_http_host }}"
|
|||
|
||||
## The port on which to have the HTTP server, for user login and
|
||||
## administration.
|
||||
http_port = "{{ lldap_http_port }}"
|
||||
http_port = {{ lldap_http_port }}
|
||||
|
||||
## The public URL of the server, for password reset links.
|
||||
http_url = "{{ lldap_public_url }}"
|
||||
|
@ -113,11 +113,11 @@ key_seed = "{{ lldap_key_seed }}"
|
|||
## (example with "password"): LLDAP_SMTP_OPTIONS__PASSWORD
|
||||
[smtp_options]
|
||||
## Whether to enabled password reset via email, from LLDAP.
|
||||
enable_password_reset="{{ lldap_smtp_enable_password_reset }}"
|
||||
enable_password_reset={{ lldap_smtp_enable_password_reset }}
|
||||
## The SMTP server.
|
||||
server="{{ lldap_smtp_server }}"
|
||||
## The SMTP port.
|
||||
port="{{ lldap_smtp_port }}"
|
||||
port={{ lldap_smtp_port }}
|
||||
## How the connection is encrypted, either "NONE" (no encryption), "TLS" or "STARTTLS".
|
||||
smtp_encryption = "{{ lldap_smtp_smtp_encryption }}"
|
||||
## The SMTP user, usually your email address.
|
||||
|
|
Loading…
Reference in a new issue