Advertisement
jztmanyl

Untitled

Oct 22nd, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. crontask: '0 40 * * * *' # This would make it every day at 4 AM
  2.  
  3. # CronTask format:
  4. # * * * * * *
  5. # | | | | | |
  6. # | | | | | +---- Day of the Week (1-7)
  7. # | | | | +------ Month (1-12)
  8. # | | | +-------- Day of the Month (1-31)
  9. # | | +---------- Hour (0-23)
  10. # | +------------ Minute (0-59)
  11. # +-------------- Second (0-59)
  12.  
  13. # A few more examples...
  14. # crontask: '0 0 * * * *' This would make it every hour
  15. # crontask: '0 0 4 * * 7' This would make it every sunday at 4 AM
  16. # crontask: '0 0 4 1 * *' This would make it every first of the month at 4 AM
  17.  
  18. backup-format: 'eBackup {DATE}'
  19.  
  20. # The folder where to store the backups locally.
  21. backup-path: 'plugins/eBackup/backups'
  22.  
  23. # The maximum backups stored. Will delete older backups when reached. (≤ 0 to disable)
  24. # Note: this will only work with local backups (fallbacks included).
  25. max-backups: 1
  26.  
  27. # FTP/SFTP settings and configuration.
  28. # Backups saved here will not be auto-deleted.
  29. ftp:
  30. enable: true
  31. type: ftp # ftp for ftp, sftp for ftp over ssh
  32. host: 'myftphost'
  33. port: 21
  34. user: 'myftpusername'
  35. pass: 'myftppassword'
  36. path: 'members/backups/'
  37.  
  38. # What you want in the backup.
  39. # By default, everything will be backupped, you can remove folders in the ignore section
  40. backup:
  41. pluginjars: false # The .jar files for the plugins
  42. pluginconfs: true # The data folder of each plugin
  43. ignore: # Files to ignore and NOT backup
  44. - 'plugins/AUpdater'
  45. - 'plugins/BasicAntiCheat'
  46. - 'plugins/CoreProtect'
  47. - 'plugins/DiscordSRV'
  48. - 'plugins/InventoryRollback'
  49. - 'plugins/LaggRemover'
  50. - 'plugins/OpenInv'
  51. - 'plugins/PluginHiderPlus'
  52. - 'plugins/PluginMetrics'
  53. - 'plugins/ProtocolLib'
  54. - 'plugins/ServerRestorer'
  55. - 'plugins/SuperVanish'
  56. - 'plugins/Updater'
  57. - 'plugins/WorldEdit'
  58. - 'plugins/WorldEditSUI'
  59. - 'plugins/bStats'
  60. - 'plugins/dynmap'
  61. - 'plugins/eBackup'
  62. - 'crash-reports'
  63. - 'logs'
  64. - 'backups'
  65. - 'cache'
  66. - 'world'
  67. - 'world_nether'
  68. - 'world_the_end'
  69. - 'config'
  70. - 'debug'
  71. - 'DiscordConsole.log'
  72. - 'banned-players.json'
  73. - 'banned-ips.json'
  74. - 'commands.yml'
  75. - 'bukkit.yml'
  76. - 'eula.txt'
  77. - 'help.yml'
  78. - 'minecraft_server_latest.jar'
  79. - 'ops.json'
  80. - 'permissions.yml'
  81. - 'server-icon.png'
  82. - 'server.properties'
  83. - 'spigot-1.14.4.jar'
  84. - 'spigot.yml'
  85. - 'usercache.json'
  86. - 'wepif.yml'
  87. - 'whitelist.json'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement