{ "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PANEL", "meta": { "version": "PLCN_v2", "update_url": null }, "exported_at": "2026-04-06T02:01:23+00:00", "name": "Arma Reforger", "author": "red_thirten@yahoo.com", "uuid": "7c4dc3db-fac9-4d2d-8551-0c266e85cc50", "description": "Experience authentic Cold War combat and join friends in the struggle for a sprawling, 51 km\u00b2 mid-Atlantic island \u2014 or take on the role of Game Master and create your very own scenarios for others to enjoy.", "tags": [ "steamcmd" ], "features": [ "steam_disk_space" ], "docker_images": { "ghcr.io/parkervcp/steamcmd:debian": "ghcr.io/parkervcp/steamcmd:debian" }, "file_denylist": [], "startup": "sed -i 's/\"true\"/true/g; s/\"false\"/false/g' config.json; ./ArmaReforgerServer -gproj ./addons/data/ArmaReforger.gproj -config ./config.json -profile ./profile -backendlog -nothrow -listScenarios -logStats $(({{LOG_INTERVAL}}*1000)) -maxFPS {{MAX_FPS}} -addonTempDir ./tmp", "config": { "files": "{\n \"config.json\": {\n \"parser\": \"json\",\n \"find\": {\n \"bindAddress\": \"0.0.0.0\",\n \"bindPort\": \"{{server.allocations.default.port}}\",\n \"publicAddress\": \"{{server.allocations.default.ip}}\",\n \"publicPort\": \"{{server.allocations.default.port}}\",\n \"game.name\": \"{{server.environment.SERVER_NAME}}\",\n \"game.password\": \"{{server.environment.SERVER_PASS}}\",\n \"game.passwordAdmin\": \"{{server.environment.ADMIN_PASS}}\",\n \"game.scenarioId\": \"{{server.environment.SCENARIO_ID}}\",\n \"game.maxPlayers\": \"{{server.environment.MAX_PLAYERS}}\",\n \"game.visible\": \"{{server.environment.VISIBLE}}\",\n \"game.gameProperties.disableThirdPerson\": \"{{server.environment.DISABLE_THIRD}}\",\n \"game.gameProperties.fastValidation\": true,\n \"game.gameProperties.battlEye\": \"{{server.environment.BATTLEYE}}\"\n }\n }\n}", "startup": "{\n \"done\": \"Starting RPL server\"\n}", "logs": "{}", "stop": "^C" }, "scripts": { "installation": { "script": "#!/bin/bash\r\n\r\n## File: Pelican Arma Reforger Egg - egg-arma-reforger.json\r\n## Author: David Wolfe (Red-Thirten)\r\n## Date: 2024/11/28\r\n## License: MIT License\r\n## Image to install with is 'ghcr.io/parkervcp/installers:debian'\r\n\r\n## Download and install SteamCMD\r\nexport HOME=/mnt/server\r\ncd /tmp\r\nmkdir -p $HOME/steamcmd $HOME/steamapps\r\ncurl -sSL -o steamcmd.tar.gz https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz\r\ntar -xzvf steamcmd.tar.gz -C $HOME/steamcmd\r\ncd $HOME/steamcmd\r\n\r\n# Workaround for experimental\r\nif [[ \"${SRCDS_APPID}\" == \"1890870\" ]]; then\r\n WINDOWS_INSTALL=\"1\"\r\nfi\r\n\r\n# SteamCMD fails otherwise for some reason, even running as root.\r\nchown -R root:root /mnt\r\n\r\n# Install/Verify game server using SteamCMD\r\n./steamcmd.sh +force_install_dir $HOME +login anonymous $( [[ \"${WINDOWS_INSTALL}\" == \"1\" ]] && printf %s '+@sSteamCmdForcePlatformType windows' ) +app_update ${SRCDS_APPID} +app_update 1007 $( [[ -z ${SRCDS_BETAID} ]] || printf %s \"-beta ${SRCDS_BETAID}\" ) $( [[ -z ${SRCDS_BETAPASS} ]] || printf %s \"-betapassword ${SRCDS_BETAPASS}\" ) validate +quit\r\n\r\n# Set up 32 and 64 bit libraries\r\nmkdir -p /mnt/server/.steam/sdk{32,64}\r\ncp -v linux32/steamclient.so /mnt/server/.steam/sdk32/steamclient.so\r\ncp -v linux64/steamclient.so /mnt/server/.steam/sdk64/steamclient.so\r\n\r\n## Arma Reforger setup\r\n# Check for successful installation\r\nif [[ ! -f \"$HOME/ArmaReforgerServer\" && ! -f \"$HOME/ArmaReforgerServer.exe\" ]]; then\r\n echo -e \"\\n\\nSteamCMD failed to install the Arma Reforger Dedicated Server!\"\r\n echo -e \"\\tTry reinstalling the server again.\\n\"\r\n exit 1\r\nfi\r\n\r\nmkdir -p $HOME/profile $HOME/tmp\r\n\r\necho -e 'Creating default \"config.json\" configuration file...'\r\ncat > $HOME/config.json << EOF\r\n{\r\n\t\"bindAddress\": \"0.0.0.0\",\r\n\t\"bindPort\": ${SERVER_PORT},\r\n\t\"publicAddress\": \"${SERVER_IP}\",\r\n\t\"publicPort\": ${SERVER_PORT},\r\n\t\"game\": {\r\n\t\t\"name\": \"${SERVER_NAME}\",\r\n\t\t\"password\": \"${SERVER_PASS}\",\r\n\t\t\"passwordAdmin\": \"${ADMIN_PASS}\",\r\n\t\t\"admins\" : [],\r\n\t\t\"scenarioId\": \"${SCENARIO_ID}\",\r\n\t\t\"maxPlayers\": ${MAX_PLAYERS},\r\n\t\t\"visible\": ${VISIBLE},\r\n\t\t\"gameProperties\": {\r\n\t\t\t\"serverMaxViewDistance\": 1600,\r\n\t\t\t\"serverMinGrassDistance\": 50,\r\n\t\t\t\"networkViewDistance\": 1500,\r\n\t\t\t\"disableThirdPerson\": ${DISABLE_THIRD},\r\n\t\t\t\"fastValidation\": true,\r\n\t\t\t\"battlEye\": ${BATTLEYE},\r\n\t\t\t\"VONDisableUI\": false,\r\n\t\t\t\"VONDisableDirectSpeechUI\": false\r\n\t\t},\r\n\t\t\"mods\": []\r\n\t}\r\n}\r\nEOF\r\n\r\necho -e \"\\nArma Reforger Dedicated Server successfully installed!\\n\"", "container": "ghcr.io/parkervcp/installers:debian", "entrypoint": "/bin/bash" } }, "variables": [ { "name": "Admin Password", "description": "", "env_variable": "ADMIN_PASS", "default_value": "", "user_viewable": true, "user_editable": true, "rules": [ "nullable", "string", "max:32" ], "sort": 5 }, { "name": "Automatic Updates", "description": "Quickly checks for any server or mod updates on startup, and updates if necessary.", "env_variable": "AUTO_UPDATE", "default_value": "1", "user_viewable": true, "user_editable": true, "rules": [ "boolean" ], "sort": 1 }, { "name": "Disable Third Person", "description": "", "env_variable": "DISABLE_THIRD", "default_value": "false", "user_viewable": true, "user_editable": true, "rules": [ "required", "string", "in:true,false" ], "sort": 9 }, { "name": "Enable BattlEye", "description": "Enables the anti-cheat engine on the server and requires all clients to be running it.", "env_variable": "BATTLEYE", "default_value": "true", "user_viewable": true, "user_editable": true, "rules": [ "required", "string", "in:true,false" ], "sort": 8 }, { "name": "Max Players", "description": "Maximum number of players allowed to join the server.", "env_variable": "MAX_PLAYERS", "default_value": "32", "user_viewable": true, "user_editable": true, "rules": [ "required", "integer", "between:1,256" ], "sort": 3 }, { "name": "Scenario ID", "description": "ID of scenario to run/play. Valid IDs can be viewed in the console upon startup of the server.", "env_variable": "SCENARIO_ID", "default_value": "{ECC61978EDCC2B5A}Missions/23_Campaign.conf", "user_viewable": true, "user_editable": true, "rules": [ "required", "string" ], "sort": 6 }, { "name": "Server Name", "description": "Name displayed in the server browser.", "env_variable": "SERVER_NAME", "default_value": "Arma Reforger Server", "user_viewable": true, "user_editable": true, "rules": [ "required", "string", "max:255" ], "sort": 2 }, { "name": "Server Password", "description": "Password required for clients to enter before they can join the server. Leave empty to have no password.", "env_variable": "SERVER_PASS", "default_value": "", "user_viewable": true, "user_editable": true, "rules": [ "nullable", "string", "max:32" ], "sort": 4 }, { "name": "Visible in Server Browser", "description": "Set the visibility of the server in the Server Browser.", "env_variable": "VISIBLE", "default_value": "true", "user_viewable": true, "user_editable": true, "rules": [ "required", "string", "in:true,false" ], "sort": 7 }, { "name": "[Advanced] Arma Reforger Dedicated Server App ID", "description": "Used for installation and updates. Rarely needs to be changed.", "env_variable": "SRCDS_APPID", "default_value": "1874900", "user_viewable": false, "user_editable": false, "rules": [ "required", "integer" ], "sort": 13 }, { "name": "[Advanced] Log FPS Interval", "description": "How often (in seconds) to log the FPS and other debug stats to the console. Set to 0 to disable.", "env_variable": "LOG_INTERVAL", "default_value": "0", "user_viewable": true, "user_editable": true, "rules": [ "required", "integer", "min:0" ], "sort": 11 }, { "name": "[Advanced] Max FPS", "description": "Sets a maximum FPS limit for the server, saving performance in some cases. Leave empty for no limit.", "env_variable": "MAX_FPS", "default_value": "120", "user_viewable": true, "user_editable": true, "rules": [ "nullable", "integer", "gt:0" ], "sort": 10 }, { "name": "[Repair] Validate Server Files", "description": "\"true\" to enable; empty to disable. Validates all server files when Automatic Updates is enabled. Note: This will significantly increase server startup times, so it is recommended to only enable this when needed.", "env_variable": "VALIDATE", "default_value": "", "user_viewable": true, "user_editable": true, "rules": [ "nullable", "string" ], "sort": 12 } ] }