openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

README.md (722B)


      1 # Targets
      2 
      3 While publishing files and pages are pushed to a target.
      4 
      5 Possible publishing targets are
      6 - Local filesystem
      7 - FTP,FTPS
      8 - WebDAV
      9 - SCP
     10 - SFTP
     11 - S3 (Amazon S3 Storage)
     12 
     13 The corresponding scheme names are
     14 - `file`: Local filesystem
     15 - `ftp`:  FTP
     16 - `ftps`: FTPS (FTP over SSL)
     17 - `dav`:  WebDAV
     18 - `scp`:  Secure copy (SCP)
     19 - `sftp`: SFTP
     20 - `s3`: Amazon S3 Storage
     21 
     22 The target is selected by the scheme in the target url in the project properties.
     23 
     24 ## Example
     25 
     26 `scp://user@host/var/www` is publishing all files via SCP to the SSH-Server on host 'host'.
     27 
     28 ## Requirements
     29 
     30 Some targets need special php modules:
     31 - `scp` and `sftp` need the php-ssh lib. On Ubuntu simply install it with `sudo apt-get install php-ssh2`.