default.yaml 869 B

12345678910111213141516171819
  1. # Apache
  2. PHPLDAPADMIN_SERVER_ADMIN: webmaster@example.org
  3. PHPLDAPADMIN_SERVER_PATH: /phpldapadmin
  4. # Self signed certificat will be generated
  5. # if PHPLDAPADMIN_HTTPS is set to true and no certificat and key are provided.
  6. # To use your custom certificat and key 2 options :
  7. # - add them in service/phpldapadmin/assets/apache2/certs and build the image
  8. # - or during docker run mount a data volume with those files to /container/service/phpldapadmin/assets/apache2/certs
  9. PHPLDAPADMIN_HTTPS: true
  10. PHPLDAPADMIN_HTTPS_CRT_FILENAME: phpldapadmin.crt
  11. PHPLDAPADMIN_HTTPS_KEY_FILENAME: phpldapadmin.key
  12. PHPLDAPADMIN_HTTPS_CA_CRT_FILENAME: ca.crt
  13. PHPLDAPADMIN_TRUST_PROXY_SSL: false
  14. # ssl-helper environment variables prefix
  15. PHPLDAPADMIN_SSL_HELPER_PREFIX: phpldapadmin # ssl-helper first search config from PHPLDAPADMIN_SSL_HELPER_* variables, before SSL_HELPER_* variables.