_default.cfg 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  10. defaultmap="DM-Deck16]["
  11. ip="0.0.0.0"
  12. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  13. fn_parms(){
  14. parms="server ${defaultmap}.unr ini=${servercfgfullpath}"
  15. }
  16. #### LinuxGSM Settings ####
  17. ## Notification Alerts
  18. # (on|off)
  19. # More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info
  20. postalert="off"
  21. postdays="7"
  22. posttarget="https://hastebin.com"
  23. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  24. discordalert="off"
  25. discordwebhook="webhook"
  26. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  27. emailalert="off"
  28. email="email@example.com"
  29. emailfrom=""
  30. # IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT
  31. iftttalert="off"
  32. ifttttoken="accesstoken"
  33. iftttevent="linuxgsm_alert"
  34. # Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun
  35. mailgunalert="off"
  36. mailguntoken="accesstoken"
  37. mailgundomain="example.com"
  38. mailgunemailfrom="alert@example.com"
  39. mailgunemail="email@myemail.com"
  40. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  41. pushbulletalert="off"
  42. pushbullettoken="accesstoken"
  43. channeltag=""
  44. # Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover
  45. pushoveralert="off"
  46. pushovertoken="accesstoken"
  47. # Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram
  48. telegramalert="off"
  49. telegramtoken="accesstoken"
  50. telegramchatid=""
  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. ## LinuxGSM Server Details
  60. # Do not edit
  61. gamename="Unreal Tournament 99"
  62. engine="unreal"
  63. #### Directories ####
  64. # Edit with care
  65. ## Server Specific Directories
  66. systemdir="${serverfiles}/System"
  67. executabledir="${systemdir}"
  68. executable="./ucc-bin"
  69. servercfg="${servicename}.ini"
  70. servercfgdefault="Default.ini"
  71. servercfgdir="${systemdir}"
  72. servercfgfullpath="${servercfgdir}/${servercfg}"
  73. compressedmapsdir="${rootdir}/Maps-Compressed"
  74. ## Backup Directory
  75. backupdir="${rootdir}/backups"
  76. ## Logging Directories
  77. logdir="${rootdir}/log"
  78. gamelogdir="${serverfiles}/Logs"
  79. lgsmlogdir="${logdir}/script"
  80. consolelogdir="${logdir}/console"
  81. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  82. consolelog="${consolelogdir}/${servicename}-console.log"
  83. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  84. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  85. ## Logs Naming
  86. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  87. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"