Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/constants/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export function getSidebar(lang = 'en'): SidebarSection[] {
{ title: 'Problemas comunes', href: base + '/common-issues' },
{ title: 'Propiedades del servidor', href: base + '/server-properties' },
{ title: 'Subir un mundo personalizado', href: base + '/custom-world-upload' },
{ title: 'Dominios personalizado', href: base + '/custom-domain' },
],
},
{
Expand Down Expand Up @@ -80,6 +81,7 @@ export function getSidebar(lang = 'en'): SidebarSection[] {
{ title: 'Common Issues', href: base + '/common-issues' },
{ title: 'Server Properties', href: base + '/server-properties' },
{ title: 'Uploading a custom world', href: base + '/custom-world-upload' },
{ title: 'Custom Domains', href: base + '/custom-domain' },
],
},
{
Expand Down
31 changes: 31 additions & 0 deletions src/content/docs-es/custom-domain.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Conectar un Dominio Personalizado
description: ¡Aprende cómo conectar tu dominio personalizado a tu Seedloaf!
---
### Paso 1: Abre la Configuración DNS de tu Dominio
Inicia sesión en tu registrador de dominios o proveedor de DNS (como Cloudflare, Namecheap o GoDaddy) y navega hasta la sección de Gestión de DNS (DNS Management) de tu dominio.

### Paso 2: Crea un Registro CNAME
Añade un nuevo registro CNAME con los siguientes ajustes:
* **Tipo:** <code>CNAME</code>
* **Nombre:** <code>play</code> (crea <code>play.tudominio.com</code>)
* **Destino:** ej. <code>tusubdominio.seedloaf.gg</code> ( **no** incluyas el número de puerto ni `:`)
* **Proxy:** Debe estar desactivado / deshabilitado

### Paso 3: Crea el Registro SRV
Dirige el tráfico de Minecraft y el puerto personalizado a tu servidor:
| Campo | Valor | Notas |
| :--- | :--- | :--- |
| **Tipo** | `SRV` | |
| **Servicio** | `_minecraft` | |
| **Protocolo** | `_tcp` (o `TCP`) | |
| **Nombre / Host** | `play` | Usa `@` si quieres que los jugadores se conecten usando solo `tudominio.com` sin `play.` |
| **Prioridad** | `0` | |
| **Peso** | `0` | |
| **Puerto** | `[El Puerto de tu Servidor]` | El puerto numérico asignado en tu panel de control |
| **Destino** | `play.tudominio.com` | Debe coincidir con el nombre de host CNAME creado en el Paso 2 |
| **TTL** | `Auto` (o `3600`) | |
> **Nota para proveedores con un único campo "Nombre":** Si tu registrador no tiene campos separados para Servicio/Protocolo, ingresa `_minecraft._tcp.play` en el campo Nombre/Host.

### Paso 4: ¡Listo! ✅
¡Tu dominio personalizado ya está vinculado! Ten en cuenta que los cambios de DNS pueden tardar unos minutos en propagarse. Una vez actualizado, ¡podrás conectarte a tu servidor usando tu nuevo dominio!
31 changes: 31 additions & 0 deletions src/content/docs/custom-domain.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Connecting a Custom Domain
description: Learn how to connect your custom domain to your Seedloaf!
---
### Step 1: Open Your Domain DNS Settings
Log in to your domain registrar or DNS provider (such as Cloudflare, Namecheap, or GoDaddy) and navigate to the DNS Management section for your domain.

### Step 2: Create a CNAME Record
Add a new CNAME record with the following settings:
* **Type:** <code>CNAME</code>
* **Name:** <code>play</code> (creates <code>play.yourdomain.com</code>)
* **Target:** e.g. <code>yoursubdomain.seedloaf.gg</code> (do **not** include the port number or `:`)
* **Proxy:** This will need to be turned off / disabled

### Step 3: Create the SRV Record
Route Minecraft traffic and the custom port to your server:
| Field | Value | Notes |
| :--- | :--- | :--- |
| **Type** | `SRV` | |
| **Service** | `_minecraft` | |
| **Protocol** | `_tcp` (or `TCP`) | |
| **Name / Host** | `play` | Use `@` if you want players to connect using just `yourdomain.com` without `play.` |
| **Priority** | `0` | |
| **Weight** | `0` | |
| **Port** | `[Your Server Port]` | The numeric port assigned in your dashboard |
| **Target** | `play.yourdomain.com` | Must match the CNAME hostname created in Step 2 |
| **TTL** | `Auto` (or `3600`) | |
> **Note for providers with a single "Name" field:** If your registrar does not have separate Service/Protocol fields, enter `_minecraft._tcp.play` in the Name/Host field.

### Step 4: Done ✅
Your custom domain is now linked! Keep in mind that DNS changes may take a few minutes to propagate. Once updated, you can connect to your server using your new domain!
Loading