_default.cfg 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. ##################################
  2. ######## Default Settings ########
  3. ##################################
  4. # DO NOT EDIT WILL BE OVERWRITTEN!
  5. # Copy settings from here and use them in either
  6. # common.cfg - applies settings to every instance
  7. # [instance].cfg - applies settings to a specific instance
  8. #### Server Settings ####
  9. ## SteamCMD Login | https://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login
  10. steamuser="username"
  11. steampass='password'
  12. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  13. ip="0.0.0.0"
  14. defaultmap="RO-Arad.rom"
  15. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  16. fn_parms(){
  17. parms="server ${defaultmap}?game=ROGame.ROTeamGame?VACSecured=true -nohomedir ini=${servercfg} log=${gamelog}"
  18. }
  19. #### LinuxGSM Settings ####
  20. ## Notification Alerts
  21. # (on|off)
  22. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  23. emailalert="off"
  24. email="email@example.com"
  25. emailfrom=""
  26. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  27. pushbulletalert="off"
  28. pushbullettoken="accesstoken"
  29. channeltag=""
  30. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  31. updateonstart="off"
  32. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  33. maxbackups="4"
  34. maxbackupdays="30"
  35. stoponbackup="on"
  36. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  37. consolelogging="on"
  38. logdays="7"
  39. #### LinuxGSM Advanced Settings ####
  40. ## SteamCMD Settings
  41. # Server appid
  42. appid="223250"
  43. # Steam App Branch Select
  44. # Allows to opt into the various Steam app branches. Default branch is "".
  45. # Example: "-beta latest_experimental"
  46. branch=""
  47. ## LinuxGSM Server Details
  48. # Do not edit
  49. gamename="Red Orchestra: Ostfront 41-45"
  50. engine="unreal2"
  51. #### Directories ####
  52. # Edit with care
  53. ## Server Specific Directories
  54. serverfiles="${rootdir}/serverfiles"
  55. systemdir="${serverfiles}/system"
  56. executabledir="${systemdir}"
  57. executable="./ucc-bin"
  58. servercfg="${servicename}.ini"
  59. servercfgdefault="default.ini"
  60. servercfgdir="${systemdir}"
  61. servercfgfullpath="${servercfgdir}/${servercfg}"
  62. compressedmapsdir="${rootdir}/Maps-Compressed"
  63. ## Backup Directory
  64. backupdir="${rootdir}/backups"
  65. ## Logging Directories
  66. logdir="${rootdir}/log"
  67. gamelogdir="${logdir}/server"
  68. lgsmlogdir="${logdir}/script"
  69. consolelogdir="${logdir}/console"
  70. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  71. gamelog="${gamelogdir}/${servicename}-game.log"
  72. consolelog="${consolelogdir}/${servicename}-console.log"
  73. emaillog="${lgsmlogdir}/${servicename}-email.log"
  74. ## Logs Naming
  75. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  76. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
  77. gamelogdate="${gamelogdir}/${servicename}-game-$(date '+%Y-%m-%d-%H:%M:%S').log"