How to Add Workshop Mods to Your Arma Reforger Server

Install Steam Workshop mods on your Arma Reforger server using the Config Editor's mod manager or by editing config.json directly.

Arma Reforger mods are automatically downloaded from Steam Workshop — you just add the mod ID to your config. The XGamingServer Arma Reforger Config editor includes a built-in mod browser with auto-dependency resolution.

Open the Config Editor

In the XGamingServer Panel, click Arma Reforger Config in the sidebar.

Go to the Mods tab

Click the Mods tab in the editor.

Search for a mod

Type a mod name, author, mod ID, or Workshop URL in the search bar. Results show with thumbnails, names, and IDs.

Add it

Click Add on the mod you want. The mod is added to your config and dependencies are automatically resolved (added too).

(Optional) Manage the mod

  • Toggle Required on each mod to control whether clients must have it
  • Click Remove to delete a mod from the config
  • Use Import/Export to bulk manage mod lists as JSON

Save and restart

Click Save Changes, then restart the server from Console. The server downloads the mods on startup.

Manually Add by Mod ID

If the search doesn't find your mod:

Get the Mod ID

The 16-character hex ID is on the Steam Workshop page URL — the string after ?id=. Or check the mod's ServerData.json file.

Enter it

In the Mods tab, enter the Mod ID in the manual-add field. Optionally add a friendly name.

Click Add Mod

Save and restart.

Edit config.json

In Files, open config.json. Add mods to the mods array inside the game block:

"mods": [
  {
    "modId": "597D72161FD1ED1D",
    "name": "My Mod",
    "version": "",
    "required": true
  }
]
FieldDescription
modId16-char hex ID from the Workshop page or mod's ServerData.json
nameHuman-readable label (cosmetic only)
versionPin to a specific version, or "" for always-latest
requiredIf true, clients must have this mod to join

Save and start

Click Save Content and start the server from Console.

Finding Mod IDs

SourceHow
Steam Workshop URLThe hex string after ?id=
Mod's ServerData.jsonInside the mod folder
Config Editor searchEasiest — search by name or author

Required vs Optional Mods

In config.json:

"modsRequiredByDefault": true

When true, all mods in the list are required unless individually set to required: false. When false, mods are optional unless individually set to required: true.

How Auto-Download Works

  • The server downloads mods on first startup after they're added to the config
  • Players auto-download required mods when they connect
  • Console players (Xbox/PlayStation) cannot install mods, so modded servers reject them

How is this guide?

40% Off — Limited TimeGet your Arma Reforger server todayInstant setup, DDoS protection, and 24/7 support included.
Get a Server

On this page