_default.cfg 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. # More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info
  14. postalert="off"
  15. postdays="7"
  16. posttarget="https://hastebin.com"
  17. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  18. discordalert="off"
  19. discordwebhook="webhook"
  20. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  21. emailalert="off"
  22. email="email@example.com"
  23. emailfrom=""
  24. # IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT
  25. iftttalert="off"
  26. ifttttoken="accesstoken"
  27. iftttevent="linuxgsm_alert"
  28. # Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun
  29. mailgunalert="off"
  30. mailguntoken="accesstoken"
  31. mailgundomain="example.com"
  32. mailgunemailfrom="alert@example.com"
  33. mailgunemail="email@myemail.com"
  34. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  35. pushbulletalert="off"
  36. pushbullettoken="accesstoken"
  37. channeltag=""
  38. # Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover
  39. pushoveralert="off"
  40. pushovertoken="accesstoken"
  41. # Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram
  42. telegramalert="off"
  43. telegramtoken="accesstoken"
  44. telegramchatid=""
  45. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  46. updateonstart="off"
  47. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  48. maxbackups="4"
  49. maxbackupdays="30"
  50. stoponbackup="on"
  51. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  52. consolelogging="on"
  53. logdays="7"
  54. #### LinuxGSM Advanced Settings ####
  55. ## LinuxGSM Server Details
  56. # Do not edit
  57. gamename="TeamSpeak 3"
  58. servername="TeamSpeak 3 Server"
  59. #### Directories ####
  60. # Edit with care
  61. ## Server Specific Directories
  62. systemdir="${serverfiles}"
  63. executabledir="${serverfiles}"
  64. executable="./ts3server_startscript.sh"
  65. servercfg="${servicename}.ini"
  66. servercfgdefault="ts3server.ini"
  67. servercfgdir="${serverfiles}"
  68. servercfgfullpath="${servercfgdir}/${servercfg}"
  69. ## Backup Directory
  70. backupdir="${rootdir}/backups"
  71. ## Logging Directories
  72. logdir="${rootdir}/log"
  73. gamelogdir="${serverfiles}/logs"
  74. lgsmlogdir="${logdir}/script"
  75. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  76. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  77. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  78. ## Logs Naming
  79. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"