summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Fennell <matthew@fennell.dev>2024-03-03 13:13:25 +0000
committerMatthew Fennell <matthew@fennell.dev>2024-03-03 13:13:25 +0000
commit15770baec5290bf46e773be71a0d4d536244277d (patch)
tree3f9ce00b6288ab090911dfd46221447bf7652ac8
parent0219d6c6a563a602fabf3997ea656dd8520b7ed9 (diff)
Remove DNS and firewall sections from the README
These are now fully automated, thanks to the libcloud setup, which is currently sitting in a separate repository, that will be merged with this one. Therefore, there is no longer any need to configure these manually.
-rw-r--r--README.md40
1 files changed, 0 insertions, 40 deletions
diff --git a/README.md b/README.md
index bc6b221..36e2d8b 100644
--- a/README.md
+++ b/README.md
@@ -27,46 +27,6 @@ The box needs:
* SSH access to a user that can become root without a password
* `python3` installed
-#### DNS
-
-If the JID names match the domain of the server you are deploying to, create
-the following DNS records:
-
-| Type | Host | IP Address | TTL |
-| -------- | ---- | ---------- | --------- |
-| A Record | @ | Static IP | Automatic |
-
-| Type | Host | Target | TTL |
-| ------------ | ---------- | ----------- | --------- |
-| CNAME Record | conference | Root domain | Automatic |
-| CNAME Record | turn | Root domain | Automatic |
-| CNAME Record | upload | Root domain | Automatic |
-
-See [Prosody's docs](https://prosody.im/doc/dns) for information on alternative
-arrangements.
-
-#### Firewall
-
-Now, open the following firewall ports on the external firewall (the firewall
-on the box itself will be taken care of by the playbook):
-
-| Application | Protocol | Port |
-| ----------- | -------- | ----------- |
-| SSH | TCP | 22 |
-| HTTP | TCP | 80 |
-| XEP-0065 | TCP,UDP | 5000 |
-| XMPP Client | TCP | 5222 |
-| XEP-0368 | TCP | 5223 |
-| XMPP Server | TCP | 5269 |
-| XEP-0368 | TCP | 5270 |
-| XEP-0363 | TCP | 5280 |
-| XEP-0363 | TCP | 5281 |
-| XEP-0215 | TCP,UDP | 3478 |
-| XEP-0215 | TCP,UDP | 3479 |
-| XEP-0215 | TCP,UDP | 5349 |
-| XEP-0215 | TCP,UDP | 5350 |
-| XEP-0215 | TCP,UDP | 49152-65535 |
-
### Install ansible on the control node
Install the `ansible` package via your package manager.