Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.75 KB | None | 0 0
  1. backup:
  2.   enabled: false #enable or disable autobackup
  3.   interval: 21600 #interval in seconds between autobackups
  4.   savebefore: true #forces save before doing backup
  5.   broadcast: true #broadcast message before and after the backup
  6.   rateLimit: -1 #limits the read rate (kb/s, -1 for unlimited)
  7.   localfs:
  8.     enabled: true #enable backup to local filesystem
  9.     worlds: #list of worlds to backup, '*' - backup all worlds
  10.     - '*'
  11.     MaxNumberOfWorldsBackups: 30 #maximum number of worlds backups, after reaching this limit, plugin will delete the oldest one and then create a new.
  12.     pluginsfolder: false #backups plugins folder
  13.     MaxNumberOfPluginsBackups: 30 #maximum number of plugins backups, after reaching this limit, plugin will delete the oldest one and then create a new.
  14.     excludefolders: [] #list of paths to folders excluded from backup
  15.     destinationfolders: [] #list of destinationfolders folders to backup to
  16.     zip: false #zip backuped folders.
  17.   ftp:
  18.     enabled: false #enable backup to ftp
  19.     sftp: true #uses sftp backup
  20.     hostname: 127.0.0.1 #ftp server hostname
  21.     port: 21 #ftp server port
  22.     login: user #ftp server username/login
  23.     password: password #ftp server password
  24.     path: asw #path at ftp server at which backups will be stored
  25.     zip: false #zip bakuped folders
  26.     worlds: #list of worlds to backup, '*' - backup all worlds
  27.     - '*'
  28.     pluginsfolder: false #backup plugins folder
  29.     otherfolders: [] #list of other folders to backup
  30.     excludefolders: [] #list of paths to folders excluded from backup
  31.     maxNumberOfBackups: 2 #maximum number of backups, after reaching this limit, plugin will delete the oldest one and then create a new.
  32.   script:
  33.     enabled: true #enable script backup
  34.     scriptpaths: [] '' #paths to the scripts to execute
  35.   dropbox:
  36.     enabled: false #enable backup to dropbox
  37.     token: #your own app token(get one by creating your own app with full access at https://www.dropbox.com/developers/apps)
  38.     path: asw #path at dropbox at which backups will be stored
  39.     worlds: #list of worlds to backup, '*' - backup all worlds
  40.     - '*'
  41.     pluginsfolder: false #backup plugins folder
  42.     otherfolders: [] #list of other folders to backup
  43.     excludefolders: [] #list of paths to folders excluded from backup
  44.     maxNumberOfBackups: 2 #maximum number of backups, after reaching this limit, plugin will delete the oldest one and then create a new.
  45.     zip: true #zip bakuped folders
  46. excludefolders example:
  47.   excludefolders:
  48.  - 'plugins/Essentials'
  49.   - 'plugins/dynmap/web/tiles'
  50.   - 'plugins/A*' #wildcard, will ignore any folders which are in plugin folder and which names starts with A
  51. destinationfolders example:
  52.   destinationfolders:
  53.  - 'D:/test'
  54.   - '/home/serv/test'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement