_default.cfg 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  20. emailalert="off"
  21. email="email@example.com"
  22. emailfrom=""
  23. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  24. pushbulletalert="off"
  25. pushbullettoken="accesstoken"
  26. channeltag=""
  27. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  28. maxbackups="4"
  29. maxbackupdays="30"
  30. stoponbackup="on"
  31. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  32. consolelogging="on"
  33. logdays="7"
  34. #### LinuxGSM Advanced Settings ####
  35. ## LinuxGSM Server Details
  36. # Do not edit
  37. gamename="Unreal Tournament 99"
  38. engine="unreal"
  39. #### Directories ####
  40. # Edit with care
  41. ## Server Specific Directories
  42. systemdir="${serverfiles}/System"
  43. executabledir="${systemdir}"
  44. executable="./ucc-bin"
  45. servercfg="${servicename}.ini"
  46. servercfgdefault="Default.ini"
  47. servercfgdir="${systemdir}"
  48. servercfgfullpath="${servercfgdir}/${servercfg}"
  49. compressedmapsdir="${rootdir}/Maps-Compressed"
  50. ## Backup Directory
  51. backupdir="${rootdir}/backups"
  52. ## Logging Directories
  53. logdir="${rootdir}/log"
  54. gamelogdir="${serverfiles}/Logs"
  55. lgsmlogdir="${logdir}/script"
  56. consolelogdir="${logdir}/console"
  57. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  58. consolelog="${consolelogdir}/${servicename}-console.log"
  59. emaillog="${lgsmlogdir}/${servicename}-email.log"
  60. ## Logs Naming
  61. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  62. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"