From bafabfba0510d6adafbe4ee3b016708868f51b8a Mon Sep 17 00:00:00 2001 From: Shikiryu Date: Mon, 17 Aug 2015 13:37:08 +0200 Subject: [PATCH] Adding SFTP docs --- docs/configuration/transport/sftp.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/configuration/transport/sftp.md diff --git a/docs/configuration/transport/sftp.md b/docs/configuration/transport/sftp.md new file mode 100644 index 0000000..529b5ae --- /dev/null +++ b/docs/configuration/transport/sftp.md @@ -0,0 +1,23 @@ +# SFTP transport configuration + + ## JSON +``` +"Sftp": { + "host" : "ftp.domain.com", + "port" : 22, + "login" : "login", + "password" : "password", + "folder" : "/folder" +}, +``` + ## General +- + + ## Options +host (mandatory) = sftp host without schema ("ftp://") +port = sftp port (default: 22) +login (mandatory) = sftp login (mandatory if not anonymous) +password (mandatory)= sftp password (mandatory if not anonymous) +folder = the folder you want to put the backup in. If not set, the backup will be put in the ftp root + +