Introduction to Garry’s Mod Server Configuration

Properly configuring your Garry’s Mod server is essential for creating the best experience for your players. This guide walks you through the various configuration files and options available on the Wasabi Hosting Gamepanel.

Core Configuration Files

Garry’s Mod uses several key configuration files:

Basic Server.cfg Setup

The server.cfg file is the primary configuration file for your Garry’s Mod server. Here’s a basic template:

// Server Identification
hostname "Your Server Name"
sv_password ""                   // Password to join the server (leave empty for public)
sv_region 0                      // 0=US East, 1=US West, 2=South America, 3=Europe, 4=Asia, 5=Australia, 6=Middle East, 7=Africa
sv_lan 0                         // Set to 1 for LAN servers
rcon_password "YourRconPassword" // Remote console password (CHANGE THIS!)
sv_logfile 1                     // Enable logging
sv_logbans 1                     // Log bans
sv_logecho 1                     // Echo log to console
sv_log_onefile 0                 // Use multiple log files
sv_noclipspeed 5                 // Noclip speed
sv_noclipaccelerate 5            // Noclip acceleration

// Network Settings
sv_minrate 20000                 // Min bandwidth rate
sv_maxrate 100000                // Max bandwidth rate
sv_mincmdrate 33                 // Min cmd rate
sv_maxcmdrate 66                 // Max cmd rate
sv_minupdaterate 33              // Min update rate
sv_maxupdaterate 66              // Max update rate
net_maxfilesize 64               // Max file size for downloads

// Content Settings
sv_allowdownload 1               // Allow clients to download content
sv_allowupload 0                 // Disable uploading (prevents exploits)
sv_downloadurl ""                // FastDL URL (if you have one)

// Gameplay Settings
sbox_noclip 1                    // Allow noclip
sbox_godmode 0                   // Disable godmode
sbox_plpldamage 1                // Allow player vs player damage
sbox_maxprops 200                // Maximum props per player
sbox_maxragdolls 10              // Maximum ragdolls per player
sbox_maxnpcs 10                  // Maximum NPCs per player
sbox_maxballoons 20              // Maximum balloons per player
sbox_maxeffects 20               // Maximum effects per player
sbox_maxdynamite 10              // Maximum dynamite per player
sbox_maxlamps 10                 // Maximum lamps per player
sbox_maxthrusters 20             // Maximum thrusters per player
sbox_maxwheels 20                // Maximum wheels per player
sbox_maxhoverballs 20            // Maximum hoverballs per player
sbox_maxvehicles 6               // Maximum vehicles per player
sbox_maxbuttons 20               // Maximum buttons per player
sbox_maxsents 20                 // Maximum scripted entities per player
sbox_maxemitters 5               // Maximum emitters per player
sbox_maxspawners 3               // Maximum spawners per player
sbox_maxturrets 2                // Maximum turrets per player

// Performance Settings
decalfrequency 60                // Decal refresh rate
sv_friction 8                    // World friction
sv_defaultgravity 600            // World gravity
sv_sticktoground 0               // Stick to ground (physics)
sv_maxvelocity 3500              // Maximum velocity
sv_accelerate 10                 // Accelerate
sv_airaccelerate 10              // Air accelerate

// Admin Settings
sv_alltalk 0                     // 0=Team chat, 1=All chat
mp_friendlyfire 0                // Disable friendly fire

// Execute Additional Config Files
exec banned_user.cfg             // Execute banned users list
exec banned_ip.cfg               // Execute banned IPs list

// Message of the Day (MOTD)
sv_loadingurl "https://yourwebsite.com/motd.html"  // Web-based MOTD

// Add any additional configurations below this line

Always change the default rcon_password! Using a default or easy-to-guess password exposes your server to potential hijacking.

Workshop Configuration

To use Workshop content on your Wasabi Hosting server:

  1. Create a workshop collection on Steam
  2. Add the collection ID to your Gamepanel startup parameters:
    +host_workshop_collection COLLECTION_ID
    
  3. Additionally, you can create a workshop.vdf file in the /garrysmod/settings/ directory:
"workshopitems"
{
	"123456789"	"1"    // Replace 123456789 with your actual collection ID
}

Wasabi Hosting provides optimized networks for workshop downloads, but FastDL is still recommended for frequently used content.

FastDL Setup

FastDL allows players to download custom content much faster:

1

Create a web server

Set up a web server with sufficient storage space

2

Compress content

Use bzip2 to compress resource files:

// Add this to your server startup script
find /path/to/garrysmod/content -type f -name "*.vtf" -o -name "*.vmt" -o -name "*.png" -o -name "*.mdl" -o -name "*.wav" -o -name "*.mp3" | xargs -I{} bzip2 -zk "{}"
3

Upload compressed files

Upload the compressed files to your web server, maintaining the folder structure

4

Configure FastDL

Add to your server.cfg:

sv_downloadurl "http://your-fastdl-url.com"
sv_allowdownload 0  // Disable in-game downloads
sv_allowupload 0    // Disable uploads

Gamemode Configuration

Each gamemode has its own configuration files and options:

DarkRP settings are managed in these files:

  • /garrysmod/addons/darkrpmodification/lua/darkrp_config/settings.lua - General settings
  • /garrysmod/addons/darkrpmodification/lua/darkrp_config/disabled_defaults.lua - Features to disable
  • /garrysmod/addons/darkrpmodification/lua/darkrp_customthings/jobs.lua - Custom jobs
  • /garrysmod/addons/darkrpmodification/lua/darkrp_customthings/shipments.lua - Custom shipments
  • /garrysmod/addons/darkrpmodification/lua/darkrp_customthings/entities.lua - Custom entities

For large DarkRP servers, consider using a properly configured MySQL database instead of SQLite for better performance with many players.

Admin Mod Configuration

MySQL Configuration

Many addons (especially DarkRP) support MySQL databases:

Store database passwords securely and never share your database credentials with anyone you don’t trust completely.

Content Mounting

To use content from other Source games (CS:S, HL2, etc.), configure the mount.cfg file:

"mountcfg"
{
	"cstrike"	"C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Source\cstrike"
	"tf"		"C:\Program Files (x86)\Steam\steamapps\common\Team Fortress 2\tf"
}

On a Gamepanel, you’ll need to use the SteamCMD to download this content to your server first.

Startup Parameters

Configure these in the Gamepanel’s Startup tab:

-game garrysmod +sv_lan 0 +map gm_construct -maxplayers 16 +host_workshop_collection 123456789 -authkey YOURAUTHKEY

RCON Configuration

Remote Console (RCON) allows you to administer your server remotely:

  1. Set a strong RCON password in server.cfg:

    rcon_password "YourStrongPasswordHere"
    
  2. Connect to your server’s RCON using:

    • An RCON tool like HLSW or SourceAdmin
    • The in-game console with rcon_password followed by rcon commands
    • Gamepanel’s built-in console

RCON passwords are transmitted in plain text unless you’re using a secure connection. Always use strong, unique passwords.

Map Rotation

Configure map rotation in your server.cfg:

mapcyclefile "mapcycle.txt"
mp_timelimit 60     // Minutes per map

Then create a mapcycle.txt file in the /garrysmod/cfg/ directory:

gm_construct
gm_flatgrass
rp_downtown_v4c
ttt_minecraft_b5

Server Logging

Configure logging to track server activity:

sv_logfile 1                  // Enable logging
sv_logbans 1                  // Log bans
sv_logecho 1                  // Echo log information to console
sv_log_onefile 0              // Don't save all logs to a single file
log on                        // Turn logging on

Logs are stored in /garrysmod/logs/

Optimization Configurations

Use these settings for better server performance:

// Threading optimization
sv_parallel_packentities 1     // Use parallel processing for packing entities
sv_parallel_sendsnapshot 1     // Use parallel processing for snapshots

// Physics optimization
gmod_physiterations 4          // Number of physics iterations
sv_turbophysics 1              // Enable turbo physics

// Entity optimization
sv_timeout 120                 // Connection timeout threshold
sv_maxunlag 1                  // Maximum lag compensation in seconds
net_maxfilesize 64             // Maximum file size for transfers
sv_loadingurl ""               // Loading screen URL

DDoS Protection

Configure basic DDoS protection:

sv_minrate 20000               // Minimum client rate
sv_maxrate 100000              // Maximum client rate
sv_maxupdaterate 66            // Maximum updates per second
sv_maxcmdrate 66               // Maximum commands per second
sv_client_min_interp_ratio -1  // Client interpolation ratio minimum
sv_client_max_interp_ratio 2   // Client interpolation ratio maximum
fps_max 600                    // Maximum server FPS
sv_maxusrcmdprocessticks 24    // Maximum user command process ticks
sv_stats 0                     // Disable server stats

For more comprehensive DDoS protection, consider using our Firewall Manager.

Gamemode-Specific Configuration Examples

Source Engine Mounting (Optional)

Mount content from other Source games for additional assets:

  1. Ensure the content is installed on your server

    On a Gamepanel, you’ll need to use the SteamCMD to download this content to your server first.

  2. Configure mount points in mount.cfg

  3. Add these to your startup parameters

Configure these in the Gamepanel’s Startup tab:

-game garrysmod +sv_lan 0 +map gm_construct -maxplayers 16 +host_workshop_collection 123456789 -authkey YOURAUTHKEY

Server Monitoring

Monitor your server’s health using:

  • Console log analysis
  • Third-party monitoring tools
  • Resource utilization graphs
  • Gamepanel’s built-in console

By following this configuration guide, you can create a well-optimized and properly configured Garry’s Mod server on Wasabi Hosting. If you need further assistance, contact our support team.