Better explanation of the FTP_PASSWORD variable based on official documentation
This commit is contained in:
parent
582416f2e6
commit
dbf78cfcd6
1 changed files with 9 additions and 4 deletions
|
|
@ -104,10 +104,15 @@ DEST="s3+http://backup-bucket/backup-folder/"
|
||||||
#DEST="ssh://user[:password]@other.host[:port]/[/]some_dir"
|
#DEST="ssh://user[:password]@other.host[:port]/[/]some_dir"
|
||||||
#DEST="file:///home/foobar_user_name/new-backup-test/"
|
#DEST="file:///home/foobar_user_name/new-backup-test/"
|
||||||
|
|
||||||
# FTP PASSWORD
|
# DESTINATION BACKEND PASSWORD
|
||||||
# If you want to set a ftp password without a ftp:// you can to set a password
|
# Instead of setting the password needed for the backup destination in the
|
||||||
# in a FTP_PASSWORD
|
# DEST url, you can supply it in the FTP_PASSWORD variable below, which is
|
||||||
#FTP_PASSWORD="your_ftp_password"
|
# used by most, if not all backends, regardless of it’s name.
|
||||||
|
# Duplicity's official documentation states:
|
||||||
|
# "Supported by most backends which are password capable. More secure than
|
||||||
|
# setting it in the backend url (which might be readable in the operating
|
||||||
|
# systems process listing to other users on the same machine)."
|
||||||
|
#FTP_PASSWORD="password"
|
||||||
|
|
||||||
# INCLUDE LIST OF DIRECTORIES
|
# INCLUDE LIST OF DIRECTORIES
|
||||||
# Here is a list of directories to include; if you want to include
|
# Here is a list of directories to include; if you want to include
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue