mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
d45949b028
This example was missing the `env:` block in YAML, which if missing, caused `autorestic check` to compain: ``` * 'Backends[remote]' has invalid keys: b2_account_id, b2_account_key```
971 B
971 B
🎛 Config File
Path
By default autorestic searches for a .autorestic.yml
file in the current directory and your home folder.
./.autorestic.yml
~/.autorestic.yml
You can also specify a custom file with the -c path/to/some/config.yml
⚠️ WARNING ⚠️
Note that the data is automatically encrypted on the server. The key will be generated and added to your config file. Every backend will have a separate key. You should keep a copy of the keys or config file somewhere in case your server dies. Otherwise DATA IS LOST!
Example configuration
locations:
home:
from: /home/me
to: remote
important:
from: /path/to/important/stuff
to:
- remote
- hdd
backends:
remote:
type: b2
path: 'myBucket:backup/home'
env:
B2_ACCOUNT_ID: account_id
B2_ACCOUNT_KEY: account_key
hdd:
type: local
path: /mnt/my_external_storage
:ToCPrevNext