_default.cfg 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  10. fn_parms(){
  11. parms=""
  12. }
  13. #### LinuxGSM Settings ####
  14. ## Notification Alerts
  15. # (on|off)
  16. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  17. emailalert="off"
  18. email="email@example.com"
  19. emailfrom=""
  20. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  21. pushbulletalert="off"
  22. pushbullettoken="accesstoken"
  23. channeltag=""
  24. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  25. updateonstart="off"
  26. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  27. maxbackups="4"
  28. maxbackupdays="30"
  29. stoponbackup="on"
  30. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  31. consolelogging="on"
  32. logdays="7"
  33. #### LinuxGSM Advanced Settings ####
  34. ## SteamCMD Settings
  35. # Server appid
  36. appid="261140"
  37. # Steam App Branch Select
  38. # Allows to opt into the various Steam app branches. Default branch is "".
  39. # Example: "-beta latest_experimental"
  40. branch=""
  41. ## LinuxGSM Server Details
  42. # Do not edit
  43. gamename="Just Cause 2"
  44. engine="avalanche"
  45. #### Directories ####
  46. # Edit with care
  47. ## Server Specific Directories
  48. systemdir="${serverfiles}"
  49. executabledir="${serverfiles}"
  50. executable="./Jcmp-Server"
  51. servercfg="config.lua"
  52. servercfgdefault="config.lua"
  53. servercfgdir="${serverfiles}"
  54. servercfgfullpath="${servercfgdir}/${servercfg}"
  55. ## Backup Directory
  56. backupdir="${rootdir}/backups"
  57. ## Logging Directories
  58. logdir="${rootdir}/log"
  59. #gamelogdir="" # No server logs available
  60. lgsmlogdir="${logdir}/script"
  61. consolelogdir="${logdir}/console"
  62. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  63. consolelog="${consolelogdir}/${servicename}-console.log"
  64. emaillog="${lgsmlogdir}/${servicename}-email.log"
  65. ## Logs Naming
  66. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  67. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"