---
title: RedM Server Settings Information
description: Explore key RedM server settings and configurations to enhance performance and gameplay.
source: "https://nodecraft.com/support/games/redm/general/redm-server-settings-information"
image: "https://dynamic-assets.nodecraft.com/signedurl/w7vokBAexMnVlnMZ1Q/image.jpg?modifications=W3sibmFtZSI6ImdhbWVfYmciLCJpbWFnZV91cmwiOiJodHRwczovL2Ntcy1hLm5vZGVjcmFmdC5jb20vZi8xMzM5MzIvMjAwMHg1NTAvZmY1NmU0ZWExNC9yZWRtLWxhbmRpbmctMS0wLTIucG5nL20vIn0seyJuYW1lIjoiZ2FtZV9sb2dvIiwiaW1hZ2VfdXJsIjoiaHR0cHM6Ly9jbXMtYS5ub2RlY3JhZnQuY29tL2YvMTMzOTMyLzE2Njd4NzUwL2UwYTJmMDk1ZDIvY2Z4cmVfcmVkbS1sb2dvLWZsYXQtbmVnLnBuZy9tLyJ9LHsibmFtZSI6ImN0YV90ZXh0IiwidGV4dCI6IkNyZWF0ZSB5b3VyIG93biBzZXJ2ZXIhIn0seyJuYW1lIjoidGV4dCIsInRleHQiOiJSZWRNIFNlcnZlciBTZXR0aW5ncyBJbmZvcm1hdGlvbiJ9XQ&s=cbcb7b23cc37aca5e7454d166e8df1d82af3114737f460d44ec40494a5de3049"
published: "2025-03-10T14:38:56.000Z"
updated: "2025-03-09T23:46:00.000Z"
---

# RedM Server Settings Information

Explore key RedM server settings and configurations to enhance performance and gameplay.

Configuring your RedM server properly ensures smooth gameplay, stability, and an optimal player experience. The `server.cfg` file contains various settings that control player limits, permissions, logging, and other server behavior. This guide will cover some key RedM server settings and their functions.

---

## Nodecraft Control Panel

The control panel here at Nodecraft provides all the Basic settings needed to configure your server, such as the Server Name, Maximum Players, Description, Tags, and many others!

![The Nodecraft Pro panel showcasing the Game Settings page for RedM.](https://cms-a.nodecraft.com/f/133932/1805x1687/fcede667a5/redm-serversettings.png/m/1000x0/smart)

## Manual Configuration

If you prefer to edit your server's settings manually, you can do so directly in the Server Files tab by editing the `server.cfg` file.

### Basic Server Information

These settings define your server’s name, description, and maximum player count:

```language-ini
sv_hostname "Your Server Name"      # Sets the server name
sv_maxclients 8                  # Limits the maximum number of players (Default: 32)
sv_licenseKey "your_license_key"     # Required for authentication
```

### Server Rules and Behavior

These settings help enforce gameplay rules and control server behavior:

```language-ini
onesync_enabled 1                    # Enables OneSync for better synchronization
sv_scriptHookAllowed 0     # Prevents unauthorized script injections (0 = Disabled, 1 = Enabled)
sv_enforceGameBuild 1436              # Forces a specific game build for compatibility
```

### Resource Management

To ensure resources load correctly, you need to include them in the configuration:

```language-ini
ensure essentialmode                  # Loads a core framework (if used)
ensure some_script                     # Loads a custom script
ensure some_map                        # Loads a custom map
```

### Logging and Debugging

Enable logging and debugging for troubleshooting:

```language-ini
sv_logfile "server.log"               # Saves logs to a file
sv_debugMode 1                        # Enables debugging mode
```

### Permissions and Security

Control admin privileges and access levels:

```language-ini
add_ace group.admin command allow     # Grants admins access to all commands
add_principal identifier.steam:123456 group.admin  # Assigns admin role to a specific Steam ID
```

---

## Conclusion

Properly configuring your RedM server ensures stability, security, and a great player experience. By adjusting settings for player limits, server behavior, resource management, and security, you can tailor your server to fit your needs. Regularly updating and optimizing these settings will help maintain smooth performance.
