- Add Twilight Forest and Blue Skies dimensions to Majrusz Difficulty expert stage triggers - Add JourneyMap UI config files to AutoModpack client payload and sync rules - Register non-conflicting Ars Nouveau keybindings with Alt modifiers - Update repo and instance docs to reflect 77 server / 19 client mods and default-options patch - Enhance Player Quick Join section layout for better readability
36 lines
1.9 KiB
Markdown
36 lines
1.9 KiB
Markdown
# Minecraft Server Infrastructure Repository
|
|
|
|
Mono-repo containing infrastructure baselines, operational runbooks, and instance profile specifications for containerized Minecraft servers.
|
|
|
|
## Active Server Instances
|
|
|
|
| Instance ID | Engine / Version | Status | Documentation & Player Guide |
|
|
| :--- | :--- | :--- | :--- |
|
|
| `forge-1.20.1-survival` | Forge 1.20.1 | Active | [Instance & Player Guide](instances/forge-1.20.1-survival/README.md) |
|
|
|
|
## Repository Architecture
|
|
|
|
```text
|
|
.
|
|
├── .gitignore
|
|
├── README.md
|
|
├── docs/
|
|
│ ├── infrastructure-base.md # Cloud VM, host OS, network, and storage baseline
|
|
│ └── operations-manual.md # Administration, RCON commands, log filtering, and state runbooks
|
|
└── instances/
|
|
└── forge-1.20.1-survival/ # Forge 1.20.1 survival instance profile
|
|
├── README.md # Player joining guide, instance specs, and admin runbooks
|
|
├── mod-configs.md # Mod configuration matrix and validated schemas
|
|
├── patches/
|
|
│ ├── default-options/ # Custom Default Options keymapping modifier patch source & build scripts
|
|
│ └── lts-auth/ # Custom authentication mod source and build scripts
|
|
└── runtime/ # Active Docker deployment directory
|
|
├── console # Interactive admin console script
|
|
├── docker-compose.yml # Production Compose stack
|
|
└── data/ # Server data volume
|
|
```
|
|
|
|
## Quick Navigation
|
|
|
|
* **Host Provisioning & Security**: See [Infrastructure Baseline](docs/infrastructure-base.md) for OCI configuration, UFW rules, and kernel network tuning.
|
|
* **Server Administration**: See [Operations Manual](docs/operations-manual.md) for maintenance workflows, backup management, and troubleshooting.
|