# How to Configure Startup Parameters for Your Conan Exiles Server (/docs/conan-exiles/startup-parameters)



import { Step, Steps } from 'fumadocs-ui/components/steps';

Most Conan Exiles settings live in the `.ini` files, but some options are passed as **command-line parameters** when the server launches. On the [XGamingServer Panel](https://panel.xgamingserver.com), these go in **Startup** → startup command.

Common Parameters [#common-parameters]

| Parameter                 | Example                                           | Description                                   |
| ------------------------- | ------------------------------------------------- | --------------------------------------------- |
| `-MaxPlayers=`            | `-MaxPlayers=40`                                  | Max concurrent players (overrides `Game.ini`) |
| `-multihome=`             | `-multihome=0.0.0.0`                              | Bind server to a specific IP                  |
| `-Port=`                  | `-Port=7777`                                      | Game port                                     |
| `-QueryPort=`             | `-QueryPort=27015`                                | Steam query / browser port                    |
| `-log`                    | `-log`                                            | Print logs to console (useful for debug)      |
| `-nosteamclient`          | `-nosteamclient`                                  | Skip Steam client (for Linux / headless)      |
| `-ModList=`               | `-ModList=../../../ConanSandbox/Mods/modlist.txt` | Custom mod list path                          |
| `-useallavailablecores`   |                                                   | Use every CPU core                            |
| `-servermoduleshash=skip` |                                                   | Skip mod hash verification (dev only)         |

Edit on the Panel [#edit-on-the-panel]

<Steps>
  <Step>
    In the [XGamingServer Panel](https://panel.xgamingserver.com), click your server and open the **Startup** tab.
  </Step>

  <Step>
    Edit the startup command or individual variables. Parameters are space-separated.
  </Step>

  <Step>
    Click **Save** and restart from **Console**.
  </Step>
</Steps>

Example Full Startup Command [#example-full-startup-command]

```
ConanSandboxServer.exe -log -MaxPlayers=40 -Port=7777 -QueryPort=27015 -useallavailablecores
```

Related Guides [#related-guides]

* [Player Slots](/docs/conan-exiles/player-slots)
* [Server Configuration](/docs/conan-exiles/server-config)
* [Install Mods](/docs/conan-exiles/mod-setup)
