_default.cfg 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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://docs.linuxgsm.com/configuration/start-parameters
  9. # Edit serverfiles/ts3server.ini after installation
  10. #### LinuxGSM Settings ####
  11. ## Notification Alerts
  12. # (on|off)
  13. # Display IP | https://docs.linuxgsm.com/alerts#display-ip
  14. displayip=""
  15. # More info | https://docs.linuxgsm.com/alerts#more-info
  16. postalert="off"
  17. postdays="7"
  18. posttarget="https://hastebin.com"
  19. # Discord Alerts | https://docs.linuxgsm.com/alerts/discord
  20. discordalert="off"
  21. discordwebhook="webhook"
  22. # Email Alerts | https://docs.linuxgsm.com/alerts/email
  23. emailalert="off"
  24. email="email@example.com"
  25. emailfrom=""
  26. # IFTTT Alerts | https://docs.linuxgsm.com/alerts/ifttt
  27. iftttalert="off"
  28. ifttttoken="accesstoken"
  29. iftttevent="linuxgsm_alert"
  30. # Mailgun Email Alerts | https://docs.linuxgsm.com/alerts/mailgun
  31. mailgunalert="off"
  32. mailguntoken="accesstoken"
  33. mailgundomain="example.com"
  34. mailgunemailfrom="alert@example.com"
  35. mailgunemail="email@myemail.com"
  36. # Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet
  37. pushbulletalert="off"
  38. pushbullettoken="accesstoken"
  39. channeltag=""
  40. # Pushover Alerts | https://docs.linuxgsm.com/alerts/pushover
  41. pushoveralert="off"
  42. pushovertoken="accesstoken"
  43. # Slack Alerts | https://docs.linuxgsm.com/alerts/slack
  44. slackalert="off"
  45. slackwebhook="webhook"
  46. # Telegram Alerts | https://docs.linuxgsm.com/alerts/telegram
  47. # You can add a custom cURL string eg proxy (useful in Russia) or else in "curlcustomstring".
  48. # like a "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help", if you not need
  49. # any custom string in curl - simple ignore this parameter.
  50. telegramalert="off"
  51. telegramtoken="accesstoken"
  52. telegramchatid=""
  53. curlcustomstring=""
  54. ## Updating | https://docs.linuxgsm.com/commands/update
  55. updateonstart="off"
  56. ## Backup | https://docs.linuxgsm.com/commands/backup
  57. maxbackups="4"
  58. maxbackupdays="30"
  59. stoponbackup="on"
  60. ## Logging | https://docs.linuxgsm.com/features/logging
  61. consolelogging="on"
  62. logdays="7"
  63. ## Monitor | https://docs.linuxgsm.com/commands/monitor
  64. # Query delay time
  65. querydelay="1"
  66. #### LinuxGSM Advanced Settings ####
  67. # ANSI Colors
  68. ansi="on"
  69. # Message Display Time
  70. sleeptime="0.5"
  71. # Stop Mode | https://docs.linuxgsm.com/steamcmd/stopmode
  72. # 1: tmux kill
  73. # 2: CTRL+c
  74. # 3: quit
  75. # 4: quit 120s
  76. # 5: stop
  77. # 6: q
  78. # 7: exit
  79. # 8: 7 Days to Die
  80. # 9: Gold Source
  81. # 10: Teamspeak 3
  82. stopmode="10"
  83. ## LinuxGSM Server Details
  84. # Do not edit
  85. gamename="TeamSpeak 3"
  86. servername="TeamSpeak 3 Server"
  87. engine="null"
  88. glibc="2.17"
  89. #### Directories ####
  90. # Edit with care
  91. ## Server Specific Directories
  92. systemdir="${serverfiles}"
  93. executabledir="${serverfiles}"
  94. executable="./ts3server_startscript.sh"
  95. servercfg="${servicename}.ini"
  96. servercfgdefault="ts3server.ini"
  97. servercfgdir="${serverfiles}"
  98. servercfgfullpath="${servercfgdir}/${servercfg}"
  99. ## Backup Directory
  100. backupdir="${lgsmdir}/backup"
  101. ## Logging Directories
  102. logdir="${rootdir}/log"
  103. gamelogdir="${serverfiles}/logs"
  104. lgsmlogdir="${logdir}/script"
  105. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  106. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  107. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  108. ## Logs Naming
  109. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"