# GameServer Panel Admin Guide This document mirrors the internal WDS wiki entry so it can be viewed directly from the repository, packaged with releases, or imported into another wiki. It explains how we deploy, operate, and extend the GameServer Panel (GSP) fork of Open Game Panel. ## Overview - **Project scope** – PHP web panel + billing, Linux and Windows agents, 100+ XML driven game templates. - **Audience** – Administrators and integrators who maintain commercial hosting fleets. - **Companion repos** – [`GSP_Agent_Linux`](https://github.com/GameServerPanel/GSP_Agent_Linux) and [`GSP-Agent-Windows`](https://github.com/GameServerPanel/GSP-Agent-Windows). - **Color coding** – We keep the “rust + charcoal” palette across documentation so screenshots match the UX. ## Quick Install (deploy_gsp.sh) The repository ships `deploy_gsp.sh`, a bash helper that stages the latest commit and syncs it to your web root. Always read the script before running it and override variables via the environment when necessary. ```bash curl -fsSL https://raw.githubusercontent.com/GameServerPanel/GSP/main/deploy_gsp.sh \ -o /tmp/deploy_gsp.sh bash /tmp/deploy_gsp.sh ``` Key behaviors: 1. Clones/updates the repo in `~/gsp_stage` (configurable via `STAGE_DIR`). 2. Uses `rsync` to copy files to `WEB_ROOT` while preserving `includes/config.inc.php` and billing configs. 3. Applies safe permissions (directories 755, files 644, writable directories such as `templates_c` set to 2775). 4. Leaves MySQL credentials untouched—only you should rotate them. ## Architecture GSP is still built around the classic OGP topology: 1. **Web Panel** – PHP application with billing, coupons, invoicing, and customer UI enhancements. 2. **Agents** – Lightweight Perl daemons (`ogp_agent.pl`) installed on every game host. Default port 12679/TCP. 3. **Game Servers** – Processes defined in `modules/config_games/server_configs/*.xml`. Agents launch them inside detached GNU screen sessions, capture PIDs, and stream console logs back to the panel. All provisioning logic flows through XML definition files, so keep IDs, attributes, and order compliant with `modules/config_games/schema_server_config.xml`. ## Agent Management ### Linux Agent 1. Install dependencies: `sudo apt install git curl rsync perl libxml2-utils screen` (Ubuntu 24.04+). 2. Clone and install: ```bash sudo git clone https://github.com/GameServerPanel/GSP_Agent_Linux.git /opt/gsp-agent cd /opt/gsp-agent sudo bash install.sh sudo bash agent_conf.sh -s "yourRootPassword" -u ogp_agent ``` 3. Edit `/home/ogp_agent/Cfg/Config.pm` to match the panel entry (listen ip/port, `key`, `web_api_url`). 4. Enable the service: `sudo systemctl enable --now ogp_agent` (installs from `systemd/ogp_agent.service`). 5. Confirm heartbeats from the panel → Administration → Game Servers. ### Windows Agent (Cygwin bundle) 1. `git clone https://github.com/GameServerPanel/GSP-Agent-Windows.git C:\\gsp-agent`. 2. Run `Install\onceinstall_agent.bat` as Administrator to install Cygwin, create the `gameserver` service user, and copy files. 3. Launch the bundled Cygwin terminal and execute: ```bash cd /OGP bash agent_conf.sh -p "gameserverPassword" ``` 4. Update `C:\\OGP\\Cfg\\Config.pm` (same structure as Linux) with the panel’s key, API URL, and listen port. 5. Ensure the “OGP Agent” Windows service is set to Automatic (Delayed Start) and the firewall allows the agent port plus expected game ports. ## XML Deep Dive Game definitions live under `modules/config_games/server_configs`. They must respect the schema order and content. Keep one tag per line so diffs remain clean. ```xml valheim_linux64 lgsl valheim steamcmd Valheim start_server.sh 1 %HOME_PATH%/start_server.sh -name "%HOSTNAME%" -port %PORT% -world %MAP% %VAR_ALL% 1 10 :-_\ saves/worlds 10 rcon2 Dedicated 896660 my_server_identity Sets the Rust identity folder. Start ./RustDedicated -port {PORT} -ip {IP} {VAR_ALL} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:{OGP_HOME_DIR}/RustDedicated_Data/Plugins/x86_64 ``` ### Schema Tag Reference (abridged) The full human-readable version is provided in [`documentation/xml-notes.md`](./xml-notes.md). Highlights: - `game_config` – Root node, one per file. - `game_key` – Unique identifier plus OS suffix (`_linux64`, `_win32`, etc.). - `protocol`, `lgsl_query_name`, `gameq_query_name` – Control how the panel queries live status. - `installer` – `steamcmd`, `rsync`, `manual`, or custom. - `cli_template` – Command string appended after the executable; supports `%VARIABLE%` placeholders and `{VAR_ALL}` macros. - `cli_param` – Defines formatting rules for each variable (space/quote behaviors via the `options` attribute). - `reserve_ports` – Offsets additional ports relative to `%PORT%` (query, Steam, RCON, etc.). - `server_params` / `param` – Form inputs shown in the panel UI. - `replace_texts` – Declarative config edits (search/replace values inside cfg files). - `commands` – Start/stop/console actions executed by the agent. - `environment_variables` – Prepend exports before the command runs. ## Adding a New Game 1. **Research** – Identify the executable, required CLI flags, optional parameters, config paths, and ports. 2. **Copy a template** – Duplicate a similar XML file from `server_configs/` and modify it in-place. 3. **Wire up parameters** – Use `server_params` for every knob you want exposed, and map those IDs inside `cli_params`. 4. **Validate** – Run `xmllint --schema modules/config_games/schema_server_config.xml mygame.xml --noout`. 5. **Test** – Upload through the panel, click “Update Games List,” provision a server, and watch `ogp_agent.log` for errors. 6. **Document** – Update this guide or the wiki with any quirks, Steam app IDs, or non-standard install notes. ## Operational Notes - **No panelStart wrapper** – The agent handles PID tracking, console logs, and restart logic. Keep commands clean. - **Logging** – Agents write `ogp_agent.log`, `ogp_agent.pid`, `ogp_agent_run.pid`, and individual `console.log` files. - **Stats database** – Optional MySQL credentials in `Cfg/Config.pm` feed resource monitoring cron jobs. - **Password rotation** – Update credentials in `content/staff-passwords.txt` on the WDS website and regenerate secrets in the panel/agents at the same time. For deeper schema commentary, consult [`documentation/xml-notes.md`](./xml-notes.md) or import the Markdown into your preferred wiki.