summaryrefslogtreecommitdiff
path: root/playbook.yaml
diff options
context:
space:
mode:
authorMatthew Fennell <matthew@fennell.dev>2024-01-08 23:42:23 +0000
committerMatthew Fennell <matthew@fennell.dev>2024-01-08 23:42:23 +0000
commit2dcfb1a67fd457593814a83a9b60d352b7853bf2 (patch)
tree487849f2ccf5ac2c53b90b534d8390c2d95fe4ec /playbook.yaml
parent7ba57bb7b5592dc828670b7e01fc768ac767e86c (diff)
Enable XEP-0065
This commit enabled SOCKS5 Bytestreams, allowing users to send and receive files.
Diffstat (limited to 'playbook.yaml')
-rw-r--r--playbook.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/playbook.yaml b/playbook.yaml
index 127c383..8c53a57 100644
--- a/playbook.yaml
+++ b/playbook.yaml
@@ -28,6 +28,20 @@
- WWW
- XMPP
become: true
+ - name: Ensure port 5000/tcp is open for XEP-0065
+ community.general.ufw:
+ rule: allow
+ port: 5000
+ proto: tcp
+ state: enabled
+ become: true
+ - name: Ensure port 5000/udp is open for XEP-0065
+ community.general.ufw:
+ rule: allow
+ port: 5000
+ proto: udp
+ state: enabled
+ become: true
- name: Ensure certbot on-renew hook is installed
ansible.builtin.copy:
src: "{{ playbook_dir }}/files/on_renew.sh"