Server Identity
Configure your server name, IP, and basic information.
Basic Configuration
Open src/config/site.config.ts and find the server section:
src/config/site.config.ts
server: {
name: 'NexusCraft',
tagline: 'The Ultimate Minecraft Experience',
description: 'Join thousands of players in the most immersive Minecraft server. Custom game modes, active community, and endless adventures await.',
ip: 'play.nexuscraft.net',
version: '1.20.4',
port: 25565,
}Field Reference
| Field | Type | Description |
|---|---|---|
| name | string | Your server name. Displayed in hero, footer, and browser tab. |
| tagline | string | Short catchy phrase under the name (1 line recommended). |
| description | string | Longer description for SEO and hero section. |
| ip | string | Server IP address players will use to connect. |
| version | string | Minecraft version your server runs on. |
| port | number | Server port (default 25565). Used for status API. |
Examples
PvP Server
server: {
name: 'WarZone',
tagline: 'Dominate the Battlefield',
description: 'Intense PvP combat with custom kits, ranked matches, and weekly tournaments.',
ip: 'play.warzone.gg',
version: '1.20.4',
port: 25565,
}Survival Network
server: {
name: 'CraftWorld',
tagline: 'Build Your Dreams',
description: 'A peaceful survival experience with land claiming, custom enchants, and friendly community.',
ip: 'mc.craftworld.net',
version: '1.20.4',
port: 25565,
}Minigames Hub
server: {
name: 'ArcadeRealm',
tagline: 'Endless Fun Awaits',
description: 'BedWars, SkyWars, Murder Mystery, and 20+ more games. New game added every month!',
ip: 'play.arcaderealm.com',
version: '1.20.4',
port: 25565,
}SEO Settings
For advanced SEO, also update the seo section:
src/config/site.config.ts
seo: {
title: 'NexusCraft - Premium Minecraft Server',
description: 'Join NexusCraft, the ultimate Minecraft server experience...',
ogImage: '/og-image.png',
favicon: '/favicon.png',
}○Open Graph Image
The
ogImage is the preview image shown when sharing your site on Discord, Twitter, or Facebook. Recommended size: 1200x630 pixels.Tips
Keep the tagline short
5-7 words work best. Make it memorable and unique to your server.
Include keywords in description
Mention your game modes and unique features for better SEO.
Use a memorable IP
If possible, use a domain like play.yourserver.com instead of a numeric IP.