diff --git a/doc/030_preparing_a_new_repo.rst b/doc/030_preparing_a_new_repo.rst index bbe729bc1..3cadf78a5 100644 --- a/doc/030_preparing_a_new_repo.rst +++ b/doc/030_preparing_a_new_repo.rst @@ -235,7 +235,7 @@ credentials of your Minio Server. $ export AWS_ACCESS_KEY_ID= $ export AWS_SECRET_ACCESS_KEY= -Now you can easily initialize restic to use Minio server as backend with +Now you can easily initialize restic to use Minio server as a backend with this command. .. code-block:: console @@ -247,6 +247,35 @@ this command. Please note that knowledge of your password is required to access the repository. Losing your password means that your data is irrecoverably lost. +Wasabi +************ + +`Wasabi `__ is a low cost AWS S3 conformant object storage provider. +Due to it's S3 conformance, Wasabi can be used as a storage provider for a restic repository. + +- Create a Wasabi bucket using the `Wasabi Console `__. +- Determine the correct Wasabi service URL for your bucket `here __`. + +You must first setup the following environment variables with the +credentials of your Wasabi account. + +.. code-block:: console + + $ export AWS_ACCESS_KEY_ID= + $ export AWS_SECRET_ACCESS_KEY= + +Now you can easily initialize restic to use Wasabi as a backend with +this command. + +.. code-block:: console + + $ ./restic -r s3:https:/// init + enter password for new backend: + enter password again: + created restic backend xxxxxxxxxx at s3:https:/// + Please note that knowledge of your password is required to access + the repository. Losing your password means that your data is irrecoverably lost. + OpenStack Swift ***************