]> arthur.barton.de Git - AnsibleRoles.git/blob - roles/piwik/templates/config.ini.php.j2
New "piwik" role
[AnsibleRoles.git] / roles / piwik / templates / config.ini.php.j2
1 ; <?php exit; ?> DO NOT REMOVE THIS LINE
2 ; /etc/piwik/config.ini.php
3 ; ---
4 ; Ansible template configuration file, will be overwritten by Piwik later on,
5 ; which is okay :-)
6 ; ---
7
8 [database]
9 host = "{{ piwik_db_host }}"
10 username = "{{ piwik_db_user }}"
11 password = "{{ piwik_db_password }}"
12 dbname = "{{ piwik_db_name }}"
13
14 [General]
15 proxy_client_headers[] = "HTTP_X_FORWARDED_FOR"
16 proxy_host_headers[] = "HTTP_X_FORWARDED_HOST"
17 {% for host in piwik_trusted_hosts %}trusted_hosts[] = "{{ host }}"
18 {% endfor %}