Advertisement
Guest User

Untitled

a guest
Jun 27th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.20 KB | None | 0 0
  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://github.com/GameServerManagers/LinuxGSM/wiki/SteamCMD#steamcmd-login
  10. steamuser="niraarma3"
  11. steampass='bwf00sii..'
  12. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  13. ip="46.105.98.226"
  14. port="2302"
  15. ## ARMA 3 Modules
  16. # Add mods with relative paths:
  17. # mods/@cba_a3
  18. # To load the "Community Base Addons v3" module found in the
  19. # directory serverfiles/mods/@cba_a3. Load several mods as:
  20. # mods="mods/@ace\;mods/@acex\;mods/@cba_a3"
  21. mods="@life_server;@extdb3"
  22. ## Server-side Mods
  23. servermods="@extdb3;@life_server"
  24. ## Path to BattlEye
  25. # Leave empty for default
  26. bepath=""
  27. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  28. fn_parms(){
  29. parms="-ip=${ip} -port=${port} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -bepath=${bepath} -autoinit -loadmissiontomemory -enableHT"
  30. }
  31. #### LinuxGSM Settings ####
  32. ## Notification Alerts
  33. # (on|off)
  34. # More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info
  35. postalert="off"
  36. postdays="7"
  37. posttarget="https://hastebin.com"
  38.  
  39. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  40. discordalert="off"
  41. discordwebhook="webhook"
  42.  
  43. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  44. emailalert="off"
  45. email="email@example.com"
  46. emailfrom=""
  47.  
  48. # IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT
  49. iftttalert="off"
  50. ifttttoken="accesstoken"
  51. iftttevent="linuxgsm_alert"
  52.  
  53. # Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun
  54. mailgunalert="off"
  55. mailguntoken="accesstoken"
  56. mailgundomain="example.com"
  57. mailgunemailfrom="alert@example.com"
  58. mailgunemail="email@myemail.com"
  59.  
  60. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  61. pushbulletalert="off"
  62. pushbullettoken="accesstoken"
  63. channeltag=""
  64.  
  65. # Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover
  66. pushoveralert="off"
  67. pushovertoken="accesstoken"
  68.  
  69. # Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram
  70. telegramalert="off"
  71. telegramtoken="accesstoken"
  72. telegramchatid=""
  73.  
  74. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  75. updateonstart="off"
  76.  
  77. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  78. maxbackups="4"
  79. maxbackupdays="30"
  80. stoponbackup="on"
  81.  
  82. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  83. consolelogging="on"
  84. logdays="7"
  85.  
  86. #### LinuxGSM Advanced Settings ####
  87.  
  88. ## SteamCMD Settings
  89. # Server appid
  90. appid="233780"
  91. # Steam App Branch Select
  92. # Allows to opt into the various Steam app branches. Default branch is "".
  93. # Example: "-beta latest_experimental"
  94. branch=""
  95.  
  96. ## LinuxGSM Server Details
  97. # Do not edit
  98. gamename="ARMA 3"
  99. engine="realvirtuality"
  100.  
  101. #### Directories ####
  102. # Edit with care
  103.  
  104. ## Server Specific Directories
  105. systemdir="${serverfiles}"
  106. executabledir="${serverfiles}"
  107. executable="./arma3server"
  108. servercfg="${servicename}.server.cfg"
  109. networkcfg="${servicename}.network.cfg"
  110. servercfgdefault="server.cfg"
  111. networkcfgdefault="network.cfg"
  112. servercfgdir="${systemdir}/cfg"
  113. servercfgfullpath="${servercfgdir}/${servercfg}"
  114. networkcfgfullpath="${servercfgdir}/${networkcfg}"
  115.  
  116. ## Backup Directory
  117. backupdir="${lgsmdir}/backup"
  118.  
  119. ## Logging Directories
  120. logdir="${rootdir}/log"
  121. lgsmlogdir="${logdir}/script"
  122. consolelogdir="${logdir}/console"
  123. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  124. consolelog="${consolelogdir}/${servicename}-console.log"
  125. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  126. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  127.  
  128. ## Logs Naming
  129. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  130. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement