_default.cfg 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. ## SteamCMD Login | https://docs.linuxgsm.com/steamcmd#steamcmd-login
  10. steamuser="username"
  11. steampass='password'
  12. ## Server Start Settings | https://docs.linuxgsm.com/configuration/start-parameters
  13. ip="0.0.0.0"
  14. ## Server Start Command | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters
  15. fn_parms(){
  16. parms=""
  17. }
  18. #### LinuxGSM Settings ####
  19. ## Notification Alerts
  20. # (on|off)
  21. # Display IP | https://docs.linuxgsm.com/alerts#display-ip
  22. displayip=""
  23. # More info | https://docs.linuxgsm.com/alerts#more-info
  24. postalert="off"
  25. postdays="7"
  26. posttarget="https://hastebin.com"
  27. # Discord Alerts | https://docs.linuxgsm.com/alerts/discord
  28. discordalert="off"
  29. discordwebhook="webhook"
  30. # Email Alerts | https://docs.linuxgsm.com/alerts/email
  31. emailalert="off"
  32. email="email@example.com"
  33. emailfrom=""
  34. # IFTTT Alerts | https://docs.linuxgsm.com/alerts/ifttt
  35. iftttalert="off"
  36. ifttttoken="accesstoken"
  37. iftttevent="linuxgsm_alert"
  38. # Mailgun Email Alerts | https://docs.linuxgsm.com/alerts/mailgun
  39. mailgunalert="off"
  40. mailguntoken="accesstoken"
  41. mailgundomain="example.com"
  42. mailgunemailfrom="alert@example.com"
  43. mailgunemail="email@myemail.com"
  44. # Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet
  45. pushbulletalert="off"
  46. pushbullettoken="accesstoken"
  47. channeltag=""
  48. # Pushover Alerts | https://docs.linuxgsm.com/alerts/pushover
  49. pushoveralert="off"
  50. pushovertoken="accesstoken"
  51. # Telegram Alerts | https://docs.linuxgsm.com/alerts/telegram
  52. # You can add a custom cURL string eg proxy (useful in Russia) or else in "curlcustomstring".
  53. # like a "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help", if you not need
  54. # any custom string in curl - simple ignore this parameter.
  55. telegramalert="off"
  56. telegramtoken="accesstoken"
  57. telegramchatid=""
  58. curlcustomstring=""
  59. ## Updating | https://docs.linuxgsm.com/commands/update
  60. updateonstart="off"
  61. ## Backup | https://docs.linuxgsm.com/commands/backup
  62. maxbackups="4"
  63. maxbackupdays="30"
  64. stoponbackup="on"
  65. ## Logging | https://docs.linuxgsm.com/features/logging
  66. consolelogging="on"
  67. logdays="7"
  68. ## Monitor | https://docs.linuxgsm.com/commands/monitor
  69. # Query delay time
  70. querydelay="1"
  71. #### LinuxGSM Advanced Settings ####
  72. # ANSI Colors
  73. ansi="on"
  74. # Message Display Time
  75. sleeptime="0.5"
  76. ## SteamCMD Settings
  77. # Server appid
  78. appid="211820"
  79. # SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch
  80. branch=""
  81. steammaster="flase"
  82. ## LinuxGSM Server Details
  83. # Do not edit
  84. gamename="Starbound"
  85. engine="starbound"
  86. glibc="2.17"
  87. #### Directories ####
  88. # Edit with care
  89. ## Server Specific Directories
  90. systemdir="${serverfiles}"
  91. executabledir="${serverfiles}/linux"
  92. executable="./starbound_server"
  93. servercfg="starbound_server.config"
  94. servercfgdefault="starbound_server.config"
  95. servercfgdir="${serverfiles}/storage"
  96. servercfgfullpath="${servercfgdir}/${servercfg}"
  97. ## Backup Directory
  98. backupdir="${rootdir}/backups"
  99. ## Logging Directories
  100. logdir="${rootdir}/log"
  101. gamelogdir="${serverfiles}/storage"
  102. lgsmlogdir="${logdir}/script"
  103. consolelogdir="${logdir}/console"
  104. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  105. consolelog="${consolelogdir}/${servicename}-console.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"
  110. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"