---
title: How to Change your Starbound Server Settings
description: Learn how to change the settings for your Starbound server hosted with Nodecraft!
source: "https://nodecraft.com/support/games/starbound/how-to-change-server-settings"
image: "https://dynamic-assets.nodecraft.com/signedurl/w7vokBAexMnVlnMZ1Q/image.jpg?modifications=W3sibmFtZSI6ImdhbWVfYmciLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMjAwMHg1NTAvN2Y1MzA0NjY3My9zdGFyYm91bmQtbGFuZGluZy1wYWdlLTEtMi0wLnBuZy9tLyJ9LHsibmFtZSI6ImdhbWVfbG9nbyIsImltYWdlX3VybCI6Imh0dHBzOi8vY21zLWEubm9kZWNyYWZ0LmNvbS9mLzEzMzkzMi8zNzV4MTUwLzIyZDI1ZTQxYmUvbG9nby5wbmcvbS8ifSx7Im5hbWUiOiJjdGFfdGV4dCIsInRleHQiOiJDcmVhdGUgeW91ciBvd24gc2VydmVyISJ9LHsibmFtZSI6InRleHQiLCJ0ZXh0IjoiSG93IHRvIENoYW5nZSB5b3VyIFN0YXJib3VuZCBTZXJ2ZXIgU2V0dGluZ3MifV0&s=ddf83b2125c1b01b758c98836ee50e3bd03d2e8284395abac9a562ab2e83394b"
published: "2018-03-07T22:30:43.443Z"
updated: "2024-08-21T22:58:00.000Z"
---

# How to Change your Starbound Server Settings

Learn how to change the settings for your Starbound server hosted with Nodecraft!

Starbound is one of the easier games to modify your server's settings for. If you want to edit the raw config file, you can find it in the Server Files in the `/storage/starbound_server.config` file. Use the Nodecraft Pro panel to quickly make changes to this file.

There are a lot of options in this file, but these below are the highlighted options that we recommend making changes to.

## Important Options

#### `maxPlayers`

Sets the maximum number of players. Be sure to provide a number without any quotes.

#### `allowAdminCommandsFromAnyone`

When `allowAdminCommands` is turned on, this setting allows anyone to send admin commands. **It's recommended to turn this off**, and selective provide admin privileges to trusted players.

## Optional Settings

#### `maxTeamSize`

Maximum number of players that can work together on the same team.

#### `tutorialMessages`

When set to true, will send tutorial messages to all new players.

## Technical Settings

#### `bannedIPs`

This is an `array` of IP addresses that are banned from joining your server. Make sure to wrap your list like the example below:

```
"bannedIPs" : ["127.0.01", "127.0.02", 127.0.03"  ],
```

#### `bannedUuids`

This is an `array` of player IDs  that are banned from joining your server. Make sure to wrap your list like the example below:

```
"bannedUuids" : ["127.0.01", "127.0.02", 127.0.03"  ],
```

#### `allowAdminCommands`

This enables in-game admin commands to cheat, manage players, or other administrative commands.

#### `allowAnonymousConnections`

If set to true (as it is by default) then any user can connect to the server without providing a username or password.

#### `anonymousConnectionsAreAdmin`

When enabled allows anonymous users to send admin commands. This works similar to `allowAdminCommandsFromAnyone`.
