config.json guide
Written By Xylo01
Last updated About 18 hours ago
Accessing the server.json File on Four Seasons Hosting
Essential Arma Reforger Server Configuration Parameters
Network Configuration
{ "bindAddress": "", "bindPort": 2001, "publicAddress": "", "publicPort": 2001 }Steam Query (A2S)
{ "a2s": { "address": "", "port": 17777 } }RCON Configuration
{ "rcon": { "address": "", "port": 19999, "password": "your_rcon_password", "maxClients": 16, "permission": "admin", "blacklist": [], "whitelist": [] } }Game Configuration
{ "game": { "name": "Your Server Name", "password": "", "passwordAdmin": "admin_password", "admins": ["76561198xxxxxxxxx"], "scenarioId": "{SCENARIO_ID}", "maxPlayers": 32, "visible": true } }Platform Support
{ "game": { "crossPlatform": true, "supportedPlatforms": [ "PLATFORM_PC", "PLATFORM_XBL", "PLATFORM_PSN" ] } }Game Properties
{ "gameProperties": { "serverMaxViewDistance": 1600, "serverMinGrassDistance": 0, "networkViewDistance": 1500, "fastValidation": true, "battlEye": true, "disableThirdPerson": false, "VONDisableUI": false, "VONDisableDirectSpeechUI": false, "VONCanTransmitCrossFaction": false } }Mod Configuration
{ "modsRequiredByDefault": true, "mods": [ { "modId": "WORKSHOP_ID", "name": "Mod Name", "version": "1.0.0", "required": true } ] }Operating Configuration
{ "operating": { "lobbyPlayerSynchronise": true, "disableCrashReporter": false, "disableNavmeshStreaming": [], "disableServerShutdown": false, "disableAI": false, "playerSaveTime": 120, "aiLimit": -1, "slotReservationTimeout": 60, "joinQueue": { "maxSize": 12 } } }Best Practices
Performance Optimization
Security
Maintenance
Troubleshooting
Common Issues
Complete Example Configuration
{ "bindPort": 2001, "publicPort": 2001, "a2s": { "port": 17777 }, "rcon": { "port": 19999, "password": "secure_password", "permission": "admin" }, "game": { "name": "My Arma Reforger Server", "passwordAdmin": "secure_admin_password", "maxPlayers": 32, "visible": true, "gameProperties": { "serverMaxViewDistance": 2000, "networkViewDistance": 1500, "fastValidation": true, "battlEye": true } }, "operating": { "lobbyPlayerSynchronise": true, "aiLimit": 50 } }