-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
// Hostname for server. | ||
// ************************************************************************** // | ||
// // | ||
// Counter-Strike: Source - server.cfg // | ||
// Version 231111 // | ||
// // | ||
// ************************************************************************** // | ||
|
||
// hostname - Hostname for server. | ||
hostname "SERVERNAME" | ||
|
||
// sv_password - Server password for entry into multiplayer games. | ||
sv_password "" | ||
|
||
// RCON - remote console password. | ||
rcon_password "ADMINPASSWORD" | ||
|
||
// Server password - for private servers. | ||
sv_password "" | ||
// sv_lan - Server is a lan server ( no heartbeat, no authentication, no non-class C addresses ). | ||
sv_lan 0 | ||
|
||
// Server Logging | ||
log on | ||
sv_logbans 1 | ||
sv_logecho 1 | ||
// sv_logfile - Log server information in the log file. | ||
sv_logfile 1 | ||
sv_log_onefile 0 | ||
|
||
// sv_logbans - Log server bans in the server logs. | ||
sv_logbans 1 |