How to Install Mods on an Arma Reforger Server
Mods in Arma Reforger are distributed via the integrated Workshop. To use mods on your server, you need to add their mod data to the config.json file.
Info
All players joining the server must have the same mods installed. Mods can be downloaded via the in-game Workshop.
Step 1: Find Mod Data
There are two ways to find the required mod data (modId, name, version):
Option A: Via the Arma Reforger Workshop
Open Workshop
Open the Arma Reforger Workshop in your browser.Find mod
Search for the desired mod and open its page.Note values
Note down the values forName,IDandVersion.
Option B: Via the local ServerData.json
Download mod
Download the desired mod via the in-game Workshop.Open addons folder
Open the following folder:%USERPROFILE%\Documents\My Games\ArmaReforger\addons%USERPROFILE%\Documents\My Games\ArmaReforger\addonsTip
You can paste this path directly into the Windows Explorer address bar or into the Run dialog (
Windows Key + R).Open ServerData.json
Open the folder of the desired mod and open the fileServerData.json.Copy values
Copy the values forid,nameandversionfrom the file.
Step 2: Edit config.json
Connect via SFTP
Connect to your server via SFTP and open the fileconfig.json.Add mods
Find the"mods"entry and add your mods in the following format:json"mods": [ { "modId": "YOUR-MOD-ID", "name": "Mod-Name", "version": "1.0.0" } ],"mods": [ { "modId": "YOUR-MOD-ID", "name": "Mod-Name", "version": "1.0.0" } ],Example with multiple mods:
json"mods": [ { "modId": "59674C21AA886D57", "name": "BetterMuzzleFlashes 2.0", "version": "2.0.8" }, { "modId": "591AF5BDA9F7CE8B", "name": "Capture & Hold", "version": "1.0.8" } ],"mods": [ { "modId": "59674C21AA886D57", "name": "BetterMuzzleFlashes 2.0", "version": "2.0.8" }, { "modId": "591AF5BDA9F7CE8B", "name": "Capture & Hold", "version": "1.0.8" } ],Restart server
Save the changes and restart the server.
Important
The config.json must contain valid JSON. A missing comma or incorrect bracket can prevent the server from starting. If in doubt, use a JSON validator to check the file.
Export Mod Preset from the Game
Alternatively, you can export your mod list directly from the game:
Open main menu
Open Arma Reforger and go to the main menu.Open Mod Preset
Click theMod Preseticon.Copy JSON
Switch to theJSONtab and clickCopy to clipboard.Paste into config
Paste the copied content into the"mods"section of yourconfig.json.