# How to Install Steam Workshop Mods on Your Conan Exiles Server (/docs/conan-exiles/mod-setup)



import { File, Folder, Files } from 'fumadocs-ui/components/files';
import { Step, Steps } from 'fumadocs-ui/components/steps';

Mod File Structure [#mod-file-structure]

<Files>
  <Folder name="ConanSandbox" defaultOpen>
    <Folder name="Mods" defaultOpen>
      <File name="modlist.txt" />

      <File name="ModName1.pak" />

      <File name="ModName2.pak" />
    </Folder>
  </Folder>
</Files>

Adding Mods [#adding-mods]

<Steps>
  <Step>
    Subscribe to mods on your Steam client.
  </Step>

  <Step>
    Launch the game and enable/order them in the mod menu.
  </Step>

  <Step>
    Find your local `modlist.txt` at `<GameFolder>/ConanSandbox/Mods/modlist.txt`.
  </Step>

  <Step>
    Copy this file to your server's `ConanSandbox/Mods/` via **Files** in the [XGamingServer Panel](https://panel.xgamingserver.com).
  </Step>

  <Step>
    Copy the corresponding `.pak` files to the same `Mods/` folder on the server.
  </Step>

  <Step>
    Restart the server.
  </Step>
</Steps>

modlist.txt Format [#modlisttxt-format]

One mod per line, prefixed with `*`:

```
*ModName1.pak
*ModName2.pak
*AnotherMod.pak
```

**Load order matters** — first line loads first. Some mods require specific ordering (check mod descriptions).

Important Notes [#important-notes]

* **All players must have the exact same mods** in the same order
* Mod mismatches are the #1 connection issue — see [Troubleshooting](/docs/conan-exiles/fix-issues)
* After game updates, mods may need updating before they're compatible

Related Guides [#related-guides]

* [Server Configuration](/docs/conan-exiles/server-config)
* [Change the Map](/docs/conan-exiles/map-guide)
