mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 12:55:18 +00:00
docs: add new REST server env variables
This commit is contained in:
parent
2089c54310
commit
0f97356b21
@ -209,6 +209,14 @@ are some more examples:
|
|||||||
$ restic -r rest:https://user:pass@host:8000/ init
|
$ restic -r rest:https://user:pass@host:8000/ init
|
||||||
$ restic -r rest:https://user:pass@host:8000/my_backup_repo/ init
|
$ restic -r rest:https://user:pass@host:8000/my_backup_repo/ init
|
||||||
|
|
||||||
|
The server username and password can be specified using environment
|
||||||
|
variables as well:
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
|
$ export RESTIC_REST_USERNAME=<MY_REST_SERVER_USERNAME>
|
||||||
|
$ export RESTIC_REST_PASSWORD=<MY_REST_SERVER_PASSWORD>
|
||||||
|
|
||||||
If you use TLS, restic will use the system's CA certificates to verify the
|
If you use TLS, restic will use the system's CA certificates to verify the
|
||||||
server certificate. When the verification fails, restic refuses to proceed and
|
server certificate. When the verification fails, restic refuses to proceed and
|
||||||
exits with an error. If you have your own self-signed certificate, or a custom
|
exits with an error. If you have your own self-signed certificate, or a custom
|
||||||
|
@ -593,9 +593,16 @@ environment variables. The following lists these environment variables:
|
|||||||
AWS_PROFILE Amazon credentials profile (alternative to specifying key and region)
|
AWS_PROFILE Amazon credentials profile (alternative to specifying key and region)
|
||||||
AWS_SHARED_CREDENTIALS_FILE Location of the AWS CLI shared credentials file (default: ~/.aws/credentials)
|
AWS_SHARED_CREDENTIALS_FILE Location of the AWS CLI shared credentials file (default: ~/.aws/credentials)
|
||||||
|
|
||||||
ST_AUTH Auth URL for keystone v1 authentication
|
AZURE_ACCOUNT_NAME Account name for Azure
|
||||||
ST_USER Username for keystone v1 authentication
|
AZURE_ACCOUNT_KEY Account key for Azure
|
||||||
ST_KEY Password for keystone v1 authentication
|
AZURE_ACCOUNT_SAS Shared access signatures (SAS) for Azure
|
||||||
|
AZURE_ENDPOINT_SUFFIX Endpoint suffix for Azure Storage (default: core.windows.net)
|
||||||
|
|
||||||
|
B2_ACCOUNT_ID Account ID or applicationKeyId for Backblaze B2
|
||||||
|
B2_ACCOUNT_KEY Account Key or applicationKey for Backblaze B2
|
||||||
|
|
||||||
|
GOOGLE_PROJECT_ID Project ID for Google Cloud Storage
|
||||||
|
GOOGLE_APPLICATION_CREDENTIALS Application Credentials for Google Cloud Storage (e.g. $HOME/.config/gs-secret-restic-key.json)
|
||||||
|
|
||||||
OS_AUTH_URL Auth URL for keystone authentication
|
OS_AUTH_URL Auth URL for keystone authentication
|
||||||
OS_REGION_NAME Region name for keystone authentication
|
OS_REGION_NAME Region name for keystone authentication
|
||||||
@ -619,19 +626,15 @@ environment variables. The following lists these environment variables:
|
|||||||
OS_STORAGE_URL Storage URL for token authentication
|
OS_STORAGE_URL Storage URL for token authentication
|
||||||
OS_AUTH_TOKEN Auth token for token authentication
|
OS_AUTH_TOKEN Auth token for token authentication
|
||||||
|
|
||||||
B2_ACCOUNT_ID Account ID or applicationKeyId for Backblaze B2
|
|
||||||
B2_ACCOUNT_KEY Account Key or applicationKey for Backblaze B2
|
|
||||||
|
|
||||||
AZURE_ACCOUNT_NAME Account name for Azure
|
|
||||||
AZURE_ACCOUNT_KEY Account key for Azure
|
|
||||||
AZURE_ACCOUNT_SAS Shared access signatures (SAS) for Azure
|
|
||||||
AZURE_ENDPOINT_SUFFIX Endpoint suffix for Azure Storage (default: core.windows.net)
|
|
||||||
|
|
||||||
GOOGLE_PROJECT_ID Project ID for Google Cloud Storage
|
|
||||||
GOOGLE_APPLICATION_CREDENTIALS Application Credentials for Google Cloud Storage (e.g. $HOME/.config/gs-secret-restic-key.json)
|
|
||||||
|
|
||||||
RCLONE_BWLIMIT rclone bandwidth limit
|
RCLONE_BWLIMIT rclone bandwidth limit
|
||||||
|
|
||||||
|
RESTIC_REST_USERNAME Restic REST Server username
|
||||||
|
RESTIC_REST_PASSWORD Restic REST Server password
|
||||||
|
|
||||||
|
ST_AUTH Auth URL for keystone v1 authentication
|
||||||
|
ST_USER Username for keystone v1 authentication
|
||||||
|
ST_KEY Password for keystone v1 authentication
|
||||||
|
|
||||||
See :ref:`caching` for the rules concerning cache locations when
|
See :ref:`caching` for the rules concerning cache locations when
|
||||||
``RESTIC_CACHE_DIR`` is not set.
|
``RESTIC_CACHE_DIR`` is not set.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user