_default.cfg 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. # For CTF: defaultmap="CTF-Face" gametype="CTF"
  11. ip="0.0.0.0"
  12. port="7777"
  13. defaultmap="DM-Underland"
  14. gametype="DM"
  15. timelimit="10"
  16. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  17. fn_parms(){
  18. parms="UnrealTournament ${defaultmap}?Game=${gametype}?TimeLimit=${timelimit} -port=${port}"
  19. }
  20. #### LinuxGSM Settings ####
  21. ## Notification Alerts
  22. # (on|off)
  23. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  24. emailalert="off"
  25. email="email@example.com"
  26. emailfrom=""
  27. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  28. pushbulletalert="off"
  29. pushbullettoken="accesstoken"
  30. channeltag=""
  31. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  32. maxbackups="4"
  33. maxbackupdays="30"
  34. stoponbackup="on"
  35. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  36. consolelogging="on"
  37. logdays="7"
  38. #### LinuxGSM Advanced Settings ####
  39. ## LinuxGSM Server Details
  40. # Do not edit
  41. gamename="Unreal Tournament"
  42. engine="unreal4"
  43. #### Directories ####
  44. # Edit with care
  45. ## Server Specific Directories
  46. systemdir="${serverfiles}/LinuxServer"
  47. executabledir="${systemdir}/Engine/Binaries/Linux"
  48. executable="./UE4Server-Linux-Shipping"
  49. servercfg="Game.ini"
  50. servercfgdir="${systemdir}/UnrealTournament/Saved/Config/LinuxServer"
  51. servercfgfullpath="${servercfgdir}/${servercfg}"
  52. ## Backup Directory
  53. backupdir="${rootdir}/backups"
  54. ## Logging Directories
  55. logdir="${rootdir}/log"
  56. gamelogdir="${serverfiles}/Logs"
  57. lgsmlogdir="${logdir}/script"
  58. consolelogdir="${logdir}/console"
  59. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  60. consolelog="${consolelogdir}/${servicename}-console.log"
  61. emaillog="${lgsmlogdir}/${servicename}-email.log"
  62. ## Logs Naming
  63. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  64. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"