diff --git a/tasks/install.yml b/tasks/install.yml index c7c2e0bef6f4565b9eb6ab67021cbad155f5018d..7e4fc80e228a642e92486905640284fcf0c78546 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 6de1f27d18c8197a60678287efe59afa7bab5616..31ad26c299074ad020a68b485b307a3d4b772c1f 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 }}"