-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.template.php
More file actions
40 lines (31 loc) · 837 Bytes
/
Copy pathconfig.template.php
File metadata and controls
40 lines (31 loc) · 837 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
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Server access token (required)
* Use `openssl rand -hex 8` to generate one at random.
* Set to `false` to use no token.
*/
// $accesstoken = '78341152667a11ad';
/**
* Path to cache file
* The cache file and the folder containing it must be writable by the web user.
* '/tmp/filemo.cache.sqlite' is used as default value.
*/
// $cachepath = 'local/cache.sqlite';
/**
* Provider configuration:
* Either $fspath or $s3server have to be configured.
*/
/**
* Path to Arq backup folder
* (Backup folders contain a README.TXT and subfolders for each computer)
*/
// $fspath = '/home/example/backups';
/**
* Configuration for S3 hosted backup
*/
// $s3server = [
// 'url' => 'https://s3.eu-central-1.wasabisys.com/todo/',
// 'keyID' => 'todo',
// 'secret' => 'todo',
// 'region' => 'us-east-1',
// ];