- 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
18 lines
643 B
TOML
18 lines
643 B
TOML
# Forge ICOM hub configuration.
|
|
#
|
|
# Copy this file to `config.toml` beside `forge-icom.exe`, into the working
|
|
# directory used to launch the hub, or use the shared repo-root `config.toml`
|
|
# generated from `bin/host/config.example.toml`.
|
|
#
|
|
# The ICOM loader only reads the [server] section. Extra sections in the shared
|
|
# host config are ignored by the standalone hub.
|
|
|
|
[server]
|
|
# TCP address the ICOM hub binds to.
|
|
# - "0.0.0.0" listens on all network interfaces and allows remote servers.
|
|
# - "127.0.0.1" listens only on localhost for same-machine testing.
|
|
host = "0.0.0.0"
|
|
|
|
# TCP port accepted by extension `icom:connect` calls.
|
|
port = 9090
|