arreglando configuración

This commit is contained in:
Mauro Torrez 2019-04-29 17:53:42 -03:00
parent ec8d80e1b7
commit 5da7c869e3

View File

@ -63,13 +63,17 @@
content: | content: |
<?php <?php
{% if kanboard_use_ldap %} {% if kanboard_use_ldap %}
// Enable LDAP authentication (false by default) // Enable LDAP authentication (false by default)
define('LDAP_AUTH', true); define('LDAP_AUTH', true);
// LDAP server hostname // LDAP server hostname
define('LDAP_SERVER', '{{ ldap_uri }}'); define('LDAP_SERVER', '{{ ldap_uri }}');
// LDAP properties // LDAP properties
define('LDAP_USER_BASE_DN', 'ou=People,{{ ldap_base_dn }}'); define('LDAP_USER_BASE_DN', 'ou=People,{{ ldap_base_dn }}');
define('LDAP_USER_FILTER', 'uid=%s'); define('LDAP_USER_FILTER', 'uid=%s');
{% endif %} {% endif %}
dest: /var/lib/docker/volumes/kanboard_data/_data/config.php dest: /var/lib/docker/volumes/kanboard_data/_data/config.php
@ -84,8 +88,8 @@
# - "10080:80" # - "10080:80"
# - "10443:443" # - "10443:443"
volumes: volumes:
- kanboard_data:/srv/app/data - kanboard_data:/var/www/app/data
- kanboard_plugins:/srv/app/plugins - kanboard_plugins:/var/www/app/plugins
env: env:
networks: networks:
- name: "{{ docker_network_name }}" - name: "{{ docker_network_name }}"