- 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
29 lines
963 B
INI
29 lines
963 B
INI
// Arma 3 dedicated server basic.cfg
|
|
//
|
|
// Forge Host launches this file with -cfg=basic.cfg. Use it for network and
|
|
// performance tuning. Gameplay rules, missions, passwords, and admin settings
|
|
// belong in server.cfg, which is launched with -config=server.cfg.
|
|
|
|
language = "English";
|
|
adapter = -1;
|
|
3D_Performance = 1;
|
|
Resolution_W = 0;
|
|
Resolution_H = 0;
|
|
Resolution_Bpp = 32;
|
|
// Bandwidth limits in bits per second. Raise MaxBandwidth for hosted servers
|
|
// with a reliable uplink; keep MinBandwidth conservative for local testing.
|
|
MinBandwidth = 131072;
|
|
MaxBandwidth = 10000000000;
|
|
|
|
// Message sizing and send cadence. Higher values can improve responsiveness on
|
|
// healthy networks but may increase bandwidth and CPU pressure.
|
|
MaxMsgSend = 128;
|
|
MaxSizeGuaranteed = 512;
|
|
MaxSizeNonguaranteed = 256;
|
|
MinErrorToSend = 0.001;
|
|
MinErrorToSendNear = 0.01;
|
|
|
|
// Prevent clients from uploading custom face/sound files to the server.
|
|
MaxCustomFileSize = 0;
|
|
Windowed = 0;
|