_default.cfg 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. # You can add a custom cURL string eg proxy (useful in Russia) or else in "curlcustomstring".
  43. # like a "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help", if you not need
  44. # any custom string in curl - simple ignore this parameter.
  45. telegramalert="off"
  46. telegramtoken="accesstoken"
  47. telegramchatid=""
  48. curlcustomstring=""
  49. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  50. updateonstart="off"
  51. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  52. maxbackups="4"
  53. maxbackupdays="30"
  54. stoponbackup="on"
  55. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  56. consolelogging="on"
  57. logdays="7"
  58. #### LinuxGSM Advanced Settings ####
  59. # ANSI Colors
  60. ansi="on"
  61. ## LinuxGSM Server Details
  62. # Do not edit
  63. gamename="TeamSpeak 3"
  64. servername="TeamSpeak 3 Server"
  65. #### Directories ####
  66. # Edit with care
  67. ## Server Specific Directories
  68. systemdir="${serverfiles}"
  69. executabledir="${serverfiles}"
  70. executable="./ts3server_startscript.sh"
  71. servercfg="${servicename}.ini"
  72. servercfgdefault="ts3server.ini"
  73. servercfgdir="${serverfiles}"
  74. servercfgfullpath="${servercfgdir}/${servercfg}"
  75. ## Backup Directory
  76. backupdir="${rootdir}/backups"
  77. ## Logging Directories
  78. logdir="${rootdir}/log"
  79. gamelogdir="${serverfiles}/logs"
  80. lgsmlogdir="${logdir}/script"
  81. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  82. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  83. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  84. ## Logs Naming
  85. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"