Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. file-prefix: "backup-{day}-{month}-{year}.zip"
  2. #Format for naming the file. Uses the following formats: {day} - 03, {year} - 2016, {month} - 02, {MONTH} - Feb, {unix} - Unix timestamp, {hour} - 07 (24 hour time), {minute} - 32, {second} - 46
  3. #example file-format: "{day}-{month}-{year} {hour}-{minute}.zip", note: Some machines do not like foreign characters in files, so if you get an error check your format.
  4. file-format: "{unix}.zip"
  5. debug: false #Enabled Debug output
  6. minute-frequency: 360 #How often in minutes to initiate a backup sequence
  7. last-backup: 0 #Timestamp of last backup made
  8. #Configuration of infromation to backup
  9. backup:
  10. #List of worlds to backup
  11. worlds:
  12. - 'world'
  13. - 'plots'
  14. - 'cleanroom'
  15. - 'Free'
  16. - 'build'
  17. #Additional directories to backup
  18. directories:
  19. - 'C:\Users\Administrator\Desktop'
  20. #Plugin directories to backup
  21. plugins:
  22. all-plugins: true
  23. #Backup all of the single files in the main server directory (spigot jar, ops.json, server.properties, etc.)
  24. server-root: true
  25. services:
  26. backblaze: #BackBlaze requires a B2 Account for remote backups. All information can be obtained from the account panel.
  27. enabled: false
  28. accountId: ""
  29. applicationKey: ""
  30. bucketId: ""
  31. maintain: 7 #Number of backups to complete before deleting old backups
  32. localstorage: #Store backups in plugins/BackupsPlus/backups/
  33. enabled: true
  34. maintain: 7 #Number of backups to complete before deleting old backups
  35. ftp:
  36. enabled: false
  37. directory: "backups" #Directory place backup files
  38. host: ""
  39. port: 21
  40. username: ""
  41. password: ""
  42. maintain: 7 #Number of backups to complete before deleting old backups
  43. sftp:
  44. enabled: false
  45. directory: "backups"
  46. host: ""
  47. port: 22
  48. username: ""
  49. password: ""
  50. maintain: 7 #Number of backups to complete before deleting old backups
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement