docs: Add DNS documentation

This commit is contained in:
Julian-Samuel Gebühr 2023-03-15 11:39:36 +01:00
parent 0e82fab320
commit a1b51f97f5

19
docs/configuring-dns.md Normal file
View file

@ -0,0 +1,19 @@
# Configuring DNS
To reach your services, you'd need to do some DNS configuration.
## DNS settings example
The DNS setup is dependent on which services you want to activate. You need t oset the first entry and an entry for each
service you activate that needs a (sub-)domain. Feel free to adjust the host to you liking (you can even use a separate domain).
| Service | Type | Host | Target |
|-------------|-------|------------------------|---------------------|
| - | A | `example.com` | `IP of your server` |
| Radicale | CNAME | `calendar.example.com` | `example.com` |
| Miniflux | CNAME | `feed.example.com` | `example.com` |
| Uptime-kuma | CNAME | `status.example.com` | `example.com` |
Be mindful as to how long it will take for the DNS records to propagate.
When you're done configuring DNS, proceed to [Configuring the playbook](configuring-playbook.md).