From 2dcfb1a67fd457593814a83a9b60d352b7853bf2 Mon Sep 17 00:00:00 2001 From: Matthew Fennell Date: Mon, 8 Jan 2024 23:42:23 +0000 Subject: Enable XEP-0065 This commit enabled SOCKS5 Bytestreams, allowing users to send and receive files. --- playbook.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'playbook.yaml') 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" -- cgit v1.2.3