2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-23 05:12:10 +00:00

Use new URI syntax in documentation

This commit is contained in:
Alexander Neumann 2016-08-11 20:37:49 +02:00
parent fa4570bde8
commit 1fe8deeb6e

View File

@ -325,18 +325,16 @@ credentials.
Once the server is configured, the setup of the SFTP repository can simply be Once the server is configured, the setup of the SFTP repository can simply be
achieved by changing the URL scheme in the `init` command: achieved by changing the URL scheme in the `init` command:
$ restic -r sftp://user@host//tmp/backup init $ restic -r sftp:user@host:/tmp/backup init
enter password for new backend: enter password for new backend:
enter password again: enter password again:
created restic backend f1c6108821 at sftp://user@host//tmp/backup created restic backend f1c6108821 at sftp:user@host:/tmp/backup
Please note that knowledge of your password is required to access the repository. Please note that knowledge of your password is required to access the repository.
Losing your password means that your data is irrecoverably lost. Losing your password means that your data is irrecoverably lost.
Yes, that's really two slash (`/`) characters after the host name, here the You can also specify a relative (read: no slash (`/`) character at the
directory `/tmp/backup` on the server is meant. If you'd rather like to create beginning) directory, in this case the dir is relative to the remote user's
a repository in the user's home directory on the server, use the location home directory.
`sftp://user@host/foo/bar/repo`. In this case the directory is relative to the
user's home directory: `foo/bar/repo`.
# Create an Amazon S3 repository # Create an Amazon S3 repository
@ -347,15 +345,16 @@ Restic can backup data to any Amazon S3 bucket. However, in this case, changing
You can then easily initialize a repository that uses your Amazon S3 as a backend. You can then easily initialize a repository that uses your Amazon S3 as a backend.
$ restic -r s3://s3.amazonaws.com/bucket_name init $ restic -r s3:eu-central-1/bucket_name init
enter password for new backend: enter password for new backend:
enter password again: enter password again:
created restic backend eefee03bbd at s3://s3.amazonaws.com/bucket_name created restic backend eefee03bbd at s3:eu-central-1/bucket_name
Please note that knowledge of your password is required to access the repository. Please note that knowledge of your password is required to access the repository.
Losing your password means that your data is irrecoverably lost. Losing your password means that your data is irrecoverably lost.
For an S3-compatible repository without TLS available, use the alternative URI Fro an s3-compatible server that is not Amazon (like Minio, see below), or is
protocol `s3:http://server:port/bucket_name`. only available via HTTP, you can specify the URL to the server like this:
`s3:http://server:port/bucket_name`.
## Create a Minio Server repository ## Create a Minio Server repository