_default.cfg 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  9. # Edit serverfiles/ts3-server.ini after installation
  10. #### LinuxGSM Settings ####
  11. ## Notification Alerts
  12. # (on|off)
  13. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  14. emailalert="off"
  15. email="email@example.com"
  16. emailfrom=""
  17. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  18. pushbulletalert="off"
  19. pushbullettoken="accesstoken"
  20. channeltag=""
  21. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  22. updateonstart="off"
  23. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  24. maxbackups="4"
  25. maxbackupdays="30"
  26. stoponbackup="on"
  27. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  28. consolelogging="on"
  29. logdays="7"
  30. #### LinuxGSM Advanced Settings ####
  31. ## LinuxGSM Server Details
  32. # Do not edit
  33. gamename="TeamSpeak 3"
  34. servername="TeamSpeak 3 Server"
  35. #### Directories ####
  36. # Edit with care
  37. ## Server Specific Directories
  38. systemdir="${serverfiles}"
  39. executabledir="${serverfiles}"
  40. executable="./ts3server_startscript.sh"
  41. servercfg="${servicename}.ini"
  42. servercfgdefault="ts3server.ini"
  43. servercfgdir="${serverfiles}"
  44. servercfgfullpath="${servercfgdir}/${servercfg}"
  45. ## Backup Directory
  46. backupdir="${rootdir}/backups"
  47. ## Logging Directories
  48. logdir="${rootdir}/log"
  49. gamelogdir="${serverfiles}/logs"
  50. lgsmlogdir="${logdir}/script"
  51. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  52. emaillog="${lgsmlogdir}/${servicename}-email.log"
  53. ## Logs Naming
  54. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"