Changes between Initial Version and Version 1 of net.sf.basedb.xfiles/using


Ignore:
Timestamp:
Jun 25, 2014, 2:55:04 PM (10 years ago)
Author:
Nicklas Nordborg
Comment:

Created information about how to use this package

Legend:

Unmodified
Added
Removed
Modified
  • net.sf.basedb.xfiles/using

    v1 v1  
     1= How to use the External files support package =
     2
     3== The basics ==
     4
     5File items should be created with the '''New URL''' button in the file manager. The '''URL''' field is mandatory and should point to the external file.
     6Depending on which protocol that is used for the external file, a '''Server''' may or may not be specified. Note that if a server is specified the host and port setting in the server item replaces the host and port specified by the URI, and the path may also be rewritten. For example:
     7
     8`sftp://my.sftp.server/path/to/file.txt` may be replaced with `sftp://another.sftp.server/extra/path/to/file.txt`
     9
     10
     11== SFTP ==
     12
     13SFTP is '''SSH File Transfer Protocol''' (this is not the same as FTP or FTPS) and should work with most servers that can be accessed with SSH. The URL format is:
     14
     15`sftp://my.sftp.server/path/to/file.txt`
     16
     17A '''file server''' is required and it must provide ''username'', ''password'' and ''SSH fingerprint'' information. A ''root path'' is recommended since otherwise every file on the server is open for access.
     18
     19== FTP ==
     20
     21This is the plain-old FTP protocol. The URL format is:
     22
     23`ftp://my.ftp.server/path/to/file.txt`
     24
     25Anonymous FTP is supported and doesn't require a file server. A file server with ''username'' and ''password'' is needed for non-anoymous FTP. A ''server certificate'' may be specified to enable support for '''explicit SSL''' (eg. the connection starts out unencrypted, but is then switched to an encrypted after an explicit command).
     26
     27== FTPS ==
     28
     29This the plain-old FTP protocol over an SSL connection (aka '''implicit SSL'''). The URL format is:
     30
     31`ftps://my.ftp.server/path/to/file.txt`
     32
     33A file server is required and must specify at least a ''server certificate'' so that the encryption can be setup. Anonymous FTP is used if no ''username'' and ''password'' has been set.
     34
     35