# How To Configure Your Stationeers Server (/docs/stationeers/configure-your-server)



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

Stationeers servers are configured through startup parameters and the `default.ini` configuration file. This guide covers the key settings you can adjust.

Startup Parameters [#startup-parameters]

The most common settings are available directly in the panel.

<div className="fd-steps">
  <div className="fd-step">
    Open the XGamingServer Panel [#1-open-the-xgamingserver-panel]

    Log in to the [XGamingServer Panel](https://panel.xgamingserver.com).
  </div>

  <div className="fd-step">
    Go to Startup [#2-go-to-startup]

    In the sidebar, click **Startup**.
  </div>

  <div className="fd-step">
    Adjust Settings [#3-adjust-settings]

    Common startup settings include:

    * **Server Name** - The name shown in the server browser
    * **Max Players** - Maximum number of concurrent players
    * **Server Password** - Password required to join
    * **World Name** - The name of the world save
    * **World Type** - The planet/environment type (e.g., Moon, Mars, Europa, Vulcan, Loulan)
  </div>
</div>

Configuration File [#configuration-file]

For more detailed settings, you can edit the `default.ini` configuration file.

<div className="fd-steps">
  <div className="fd-step">
    Open Files [#1-open-files]

    In the sidebar, click **Files**.
  </div>

  <div className="fd-step">
    Locate default.ini [#2-locate-defaultini]

    Find the `default.ini` file in the server directory.
  </div>

  <div className="fd-step">
    Edit Settings [#3-edit-settings]

    Common configuration options include:

    ```
    [GameData]
    ServerName=My Stationeers Server
    ServerPassword=
    MaxPlayers=10
    AutoSave=true
    SaveInterval=300
    StartingCondition=Default
    RespawnCondition=Default
    ```
  </div>

  <div className="fd-step">
    Understanding Key Settings [#4-understanding-key-settings]

    | Setting             | Description                          |
    | ------------------- | ------------------------------------ |
    | `ServerName`        | Name displayed in the server browser |
    | `ServerPassword`    | Password required to join the server |
    | `MaxPlayers`        | Maximum concurrent players           |
    | `AutoSave`          | Enable automatic world saving        |
    | `SaveInterval`      | Time between auto-saves (in seconds) |
    | `StartingCondition` | Starting conditions for new players  |
    | `RespawnCondition`  | Conditions when players respawn      |
  </div>

  <div className="fd-step">
    Save and Restart [#5-save-and-restart]

    After making changes, click **Save** and **restart** your server.

    > ⚠️ **Warning:** Incorrect configuration values can prevent your server from starting. Consider creating a backup before editing files using **Backups** in the sidebar.

    > 💡 **Tip:** The world type determines the environment, atmosphere, and temperature challenges players face. Moon is the default and recommended for new players. If you need help, join our [Discord](https://discord.xgamingserver.com).
  </div>
</div>
