No description
Find a file
JaniSoto 31490656b2 feat(config): integrate Default Options mod and streamline AutoModpack
- Add defaultoptions-18.0.5 to AutoModpack client host payload (17 client mods)
- Remove /options.txt and /servers.dat from AutoModpack force-copy loop
- Create master defaultoptions template (config/defaultoptions/options.txt)
- Configure master audio levels (Master 60%, Music 25%, Hostile 75%, Ambient 40%)
- Enforce standard controls (Sneak=Shift, Sprint=Ctrl) and unbind FTB Chunks map
- Remove obsolete servers.dat from payload
- Update repository documentation (README.md, mod-configs.md, operations manual)
2026-08-16 05:42:09 +00:00
docs feat(config): integrate Default Options mod and streamline AutoModpack 2026-08-16 05:42:09 +00:00
instances/forge-1.20.1-survival feat(config): integrate Default Options mod and streamline AutoModpack 2026-08-16 05:42:09 +00:00
.gitignore packetfixer properties untrack because it updates every day 2026-08-15 22:29:06 +00:00
README.md docs: overhaul repository documentation architecture and operational runbooks 2026-08-15 19:18:47 +00:00

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

Repository Architecture

.
├── .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/
        │   └── 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 for OCI configuration, UFW rules, and kernel network tuning.
  • Server Administration: See Operations Manual for maintenance workflows, backup management, and troubleshooting.