# How to Configure Your Voyagers of Nera Server (/docs/voyagers-of-nera/server-config)



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

Voyagers of Nera uses two config files in `BoatGame/Saved/PersistedData/CustomConfig/`:

* **CustomHostUserSettings.ini** — server name, password, max players, autosave
* **CustomGameUserSettings.ini** — gameplay tuning (damage, loot, death penalty, durability)

How to Edit [#how-to-edit]

<Steps>
  <Step>
    Stop the server [#stop-the-server]

    In the [XGamingServer Panel](https://panel.xgamingserver.com), go to **Console** and stop the server.
  </Step>

  <Step>
    Open the config file [#open-the-config-file]

    Click **Files** in the sidebar and navigate to `BoatGame/Saved/PersistedData/CustomConfig/`.
  </Step>

  <Step>
    Save and start [#save-and-start]

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

<Tabs items={['Server Identity', 'Gameplay Settings']}>
  <Tab value="Server Identity">
    **CustomHostUserSettings.ini:**

    | Setting                 | Default | Description                        |
    | ----------------------- | ------- | ---------------------------------- |
    | `HostServerDisplayName` | —       | Server name in the browser         |
    | `HostServerPassword`    | (empty) | Join password — blank for public   |
    | `MaxPlayers`            | `10`    | Max concurrent players (1–10)      |
    | `AutosaveTimerSeconds`  | `300`   | Autosave interval (10–900 seconds) |
  </Tab>

  <Tab value="Gameplay Settings">
    **CustomGameUserSettings.ini:**

    | Setting                           | Default | Description              |
    | --------------------------------- | ------- | ------------------------ |
    | `GatheringRateMultiplier`         | `1.0`   | Resource gathering speed |
    | `EnemyDamageMultiplier`           | `1.0`   | Enemy damage to players  |
    | `PlayerDamageMultiplier`          | `1.0`   | Player damage to enemies |
    | `XPGainRateModifier`              | `0.0`   | XP gain bonus            |
    | `AttritionRateModifier`           | `0.0`   | Equipment wear rate      |
    | `ResourceSpawnRateModifier`       | `0.0`   | Resource respawn rate    |
    | `DisableConstructionRequirements` | `False` | Build without materials  |
    | `DisableEquipmentDurability`      | `False` | Equipment never breaks   |
    | `DisableDropItemsOnDeath`         | `False` | Keep inventory on death  |
  </Tab>
</Tabs>

Ports [#ports]

| Port       | Default | Purpose        |
| ---------- | ------- | -------------- |
| ServerPort | 27700   | Game traffic   |
| QueryPort  | 27800   | Server browser |

Related Guides [#related-guides]

* [How to Join](/docs/voyagers-of-nera/join-server)
* [Death Settings](/docs/voyagers-of-nera/death-settings)
* [Durability Settings](/docs/voyagers-of-nera/durability-settings)
