-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbackup.profile.example
More file actions
30 lines (21 loc) · 1007 Bytes
/
backup.profile.example
File metadata and controls
30 lines (21 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Enables and disables backups
backup_enabled=1
# User account for the backups.
user=admin
# Domain of the site
wp_domain=example.com
# Domain and user are used to organize the backups folder. Handy for when there is multiple sites on a single user account.
# Directory that WordPress is installed at
wp_root=/home/admin/example.com/public_html
# Optional: backup only these files & directories to be included
# Example (all WP): wp-* favicon.ico index*
# Example (only user content): wp-content wp-config*
file_list="wp-* favicon.ico index*"
# Optional: if your files & directories to be backed up are too bigger in size, you can set this to false
# and then that backup will not be compressed and the the daily backup were composed by 2 files (SQL.GZ for DB and TAR for files&dirs)
compressed_tar_file=false
# Backup location
backup_location=/backups
# Keep days is the number of backups to keep.
# Add a 1 to this number and that is how many backups will be stored before rotation.
keepdays=2