aboutsummaryrefslogtreecommitdiff
path: root/roles/icinga2/templates/web/resources.ini.j2
blob: 1b1aa2a96a8cf875104c3b7a59b9d8e51b71fd42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[icingaweb_db]
type = "db"
db = "mysql"
host = "localhost"
port = ""
dbname = "icingaweb"
username = "icingaweb"
password = "{{ icinga_web_db_pw }}"
charset = ""
use_ssl = "0"

[icinga_ido]
type = "db"
db = "mysql"
host = "localhost"
port = ""
dbname = "ido"
username = "icinga"
password = "{{ icinga_ido_db_pw }}"
charset = ""
use_ssl = "0"

{% if icingaweb.ldap.use_ldap  %}
[ldap_server]
type	= ldap
hostname= {{ icingaweb.ldap.host }}
port	= {{ icingaweb.ldap.port }}
encryption = {{ icingaweb.ldap.encryption }}
root_dn	= "{{ icingaweb.ldap.root_dn }}"
bind_dn	= "{{ icingaweb.ldap.bind_dn }}"
bind_pw = "{{ icingaweb.ldap.bind_pw }}"
{% endif  %}