Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| tutorials:redirect-subdomains-to-different-ports-via-dns [2024/02/09 17:37] – created Zyzonix | tutorials:redirect-subdomains-to-different-ports-via-dns [2024/02/10 11:07] (current) – Zyzonix | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ===== Redirecting Subdomain to specific | + | ===== Redirecting Subdomain to specific |
| + | |||
| + | **Use case: Hosting multiple minecraft servers on one Server with the same IP.** | ||
| + | |||
| + | Therefore you can use '' | ||
| + | |||
| + | Add a DNS record with the following scheme to at your DNS: | ||
| + | <code bash> | ||
| + | |||
| + | For example this can look like this: | ||
| + | <code bash> | ||
| + | |||
| + | <callout type=" | ||
| + | |||
| + | Some other examples from stackoverflow: | ||
| + | <code bash> | ||
| + | _minecraft._tcp.arboristal.com. 86400 IN SRV 10 40 25565 mc.arboristal.com. | ||
| + | _minecraft._tcp.arboristal.com. 86400 IN SRV 10 30 25566 tekkit.arboristal.com. | ||
| + | _minecraft._tcp.arboristal.com. 86400 IN SRV 10 30 25567 pvp.arboristal.com. | ||
| + | </ | ||
| + | |||
| + | //Sourced partially from [[https:// | ||