-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpbu.xml_example
35 lines (32 loc) · 1.25 KB
/
phpbu.xml_example
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
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<phpbu xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpbu.de/3.1/phpbu.xsd"
verbose="true">
<logging>
<log type="json" target="logfile.json"/>
</logging>
<backups>
<backup>
<source type="mysqldump">
<option name="databases" value="dbname"/>
<option name="user" value="username"/>
<option name="password" value="password"/>
</source>
<target dirname="backup" filename="mysqldump-%Y%m%d-%H%i.tar" compress="bzip2"/>
<sync type="yandex.disk">
<option name="token" value="YANDEX_API_TOKEN"/>
<option name="path" value="YANDEX_DISK_PATH"/>
</sync>
</backup>
<backup>
<source type="tar">
<option name="path" value="/tmp/root"/>
</source>
<target dirname="backup" filename="files-%Y%m%d-%H%i.tar" compress="bzip2"/>
<sync type="yandex.disk">
<option name="token" value="YANDEX_API_TOKEN"/>
<option name="path" value="YANDEX_DISK_PATH"/>
</sync>
</backup>
</backups>
</phpbu>