1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

correct matomo path and move to variable

This commit is contained in:
Carl Wivagg 2022-05-03 06:33:15 -04:00
parent ba33825d6a
commit 45e1fd2c0e
2 changed files with 3 additions and 2 deletions

View file

@ -23,10 +23,10 @@
src: https://builds.matomo.org/matomo.zip src: https://builds.matomo.org/matomo.zip
dest: /var/www/html dest: /var/www/html
remote_src: yes remote_src: yes
creates: /var/www/html/matomo creates: "{{ matomo_nginx_loc }}"
- name: Set Matomo Directory Permissions - name: Set Matomo Directory Permissions
file: file:
path: /var/www/html/matomo path: "{{ matomo_nginx_loc }}"
recurse: yes recurse: yes
owner: www-data owner: www-data
group: www-data group: www-data

View file

@ -2,6 +2,7 @@
include_tasks: install.yml include_tasks: install.yml
when: matomo_installed is undefined when: matomo_installed is undefined
vars: vars:
matomo_nginx_loc: "/library/www/html/matomo"
mdb_dbname: "matomodb" mdb_dbname: "matomodb"
mdb_username: "iiab-admin" mdb_username: "iiab-admin"
mdb_password: "g0adm1n" mdb_password: "g0adm1n"