From ae38c21af1ec29e61e2fe62cd02b2d5535eb9105 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Thu, 7 Oct 2021 10:25:18 +0200 Subject: [PATCH] Update settings --- tasks/install.yml | 12 ++++++++++++ templates/config.ini.php | 1 + 2 files changed, 13 insertions(+) diff --git a/tasks/install.yml b/tasks/install.yml index c7c2e0b..7e4fc80 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -162,6 +162,18 @@ tags: - deploy +- name: File Modes for JS files + file: + path: '{{ webRoot }}/{{ item }}' + mode: +w + recurse: no + follow: no + with_items: + - matomo.js + - piwik.js + tags: + - deploy + - name: Ensure Database mysql_db: name: matomo_{{ matomo.id }} diff --git a/templates/config.ini.php b/templates/config.ini.php index 6de1f27..31ad26c 100644 --- a/templates/config.ini.php +++ b/templates/config.ini.php @@ -10,6 +10,7 @@ port = "{{ matomo.db_port|default('3306') }}" [General] assume_secure_protocol = {% if matomo.protocol|default("https") == "https" %}1{% else %}0{% endif %} +force_ssl = {% if matomo.protocol|default("https") == "https" %}1{% else %}0{% endif %} trusted_hosts[] = "{{ matomo.domain }}" salt = "{{ matomo.config.salt }}" -- GitLab