_default.cfg 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. # Use .ini config file for Mumble (Murmur) server.
  10. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  11. fn_parms(){
  12. parms="-fg -ini ${servercfgfullpath}"
  13. }
  14. #### LinuxGSM Settings ####
  15. ## Notification Alerts
  16. # (on|off)
  17. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  18. emailalert="off"
  19. email="email@example.com"
  20. emailfrom=""
  21. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  22. pushbulletalert="off"
  23. pushbullettoken="accesstoken"
  24. channeltag=""
  25. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  26. updateonstart="off"
  27. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  28. maxbackups="4"
  29. maxbackupdays="30"
  30. stoponbackup="on"
  31. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  32. consolelogging="on"
  33. logdays="7"
  34. #### LinuxGSM Advanced Settings ####
  35. ## LinuxGSM Server Details
  36. # Do not edit
  37. gamename="Mumble"
  38. #### Directories ####
  39. # Edit with care
  40. ## Server Specific Directories
  41. systemdir="${serverfiles}"
  42. executabledir="${serverfiles}"
  43. executable="./murmur.x86"
  44. servercfg="${servicename}.ini"
  45. servercfgdefault="murmur.ini"
  46. servercfgdir="${serverfiles}"
  47. servercfgfullpath="${servercfgdir}/${servercfg}"
  48. ## Backup Directory
  49. backupdir="${rootdir}/backups"
  50. ## Logging Directories
  51. logdir="${rootdir}/log"
  52. #gamelogdir="" # No server logs available
  53. lgsmlogdir="${logdir}/script"
  54. consolelogdir="${logdir}/console"
  55. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  56. consolelog="${consolelogdir}/${servicename}-console.log"
  57. emaillog="${lgsmlogdir}/${servicename}-email.log"
  58. ## Logs Naming
  59. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  60. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"