glapi/glapi.env.sample

15 lines
529 B
Plaintext
Raw Permalink Normal View History

LISTEN="0.0.0.0:8080"
2022-10-08 18:52:11 +02:00
LDAP_HOST="ldap://ldap.example.org"
LDAP_BASE_DN="dc=example,dc=org"
2022-11-11 13:01:33 +01:00
# This account search for valid user provided by authenticating client.
# Then glapi bind with client provided credentials to operate LDAP.
# Thus this account only needs bind privilege, and read access to users organizational unit
LDAP_USER="cn=ldapreaduser,dc=example,dc=org"
2022-10-08 18:52:11 +02:00
LDAP_PASS='here_lies_the_password'
2022-11-11 13:01:33 +01:00
# Https support
HTTPS=false
SSL_CERTIFICATE=/etc/ssl/certs/server.pem
SSL_PRIVATE_KEY=/etc/ssl/private/server.key