Added cryptpad role

This commit is contained in:
2021-01-05 13:53:15 +01:00
parent 6de3c4633f
commit d398c22b56
14 changed files with 115 additions and 0 deletions

View File

@ -0,0 +1,24 @@
---
- 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 }},'