Files
2021-01-05 13:53:15 +01:00

25 lines
691 B
YAML

---
- name: copy config
copy:
remote_src: yes
src: ~/cryptpad/config/config.example.js
dest: ~/cryptpad/config/config.js
- name: update config
block:
- name: set domain as safe origin
lineinfile:
path: ~/cryptpad/config/config.js
regex: '/?/?httpSafeOrigin'
line: "httpSafeOrigin: 'https://{{ domain }}',"
- name: set http address
lineinfile:
path: ~/cryptpad/config/config.js
regex: '/?/?httpAddress'
line: "httpAddress: '::',"
- name: change email address
lineinfile:
path: ~/cryptpad/config/config.js
regex: 'adminEmail'
line: 'adminEmail: {{ cryptpad_email }},'