forge/arma/server/config.example.toml
Jacob Schmidt c676a9084e Consolidate shared Forge config and Arma cfg templates
- Add shared `bin/host/config.example.toml` and remove the old host example
- Split Arma config creation between `server.cfg` and `basic.cfg`
- Update docs and examples to reflect shared host-managed config
2026-06-06 20:16:39 -05:00

23 lines
730 B
TOML

# Forge Arma server extension configuration.
#
# Copy this file to `config.toml` beside `forge_server_x64.dll`, or use the
# shared config generated from `bin/host/config.example.toml`.
#
# The Arma extension reads the [surreal] section. Extra host/ICOM sections in a
# shared config are ignored by the extension.
[surreal]
# SurrealDB HTTP endpoint. This must match the running SurrealDB --bind value.
endpoint = "127.0.0.1:8000"
# Namespace and database selected by the extension after connecting.
namespace = "forge"
database = "main"
# Local development defaults. Use a real password for shared or public servers.
username = "root"
password = "root"
# Initial connection timeout in milliseconds.
connect_timeout_ms = 5000