File modules/cms/generator/target/README.md

Last commit: Sun Dec 5 02:03:27 2021 +0100	dankert	Added some documentation.
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`.
Download modules/cms/generator/target/README.md
History Sun, 5 Dec 2021 02:03:27 +0100 dankert Added some documentation. Mon, 21 Sep 2020 22:48:59 +0200 Jan Dankert Complexe refactoring: Moving all generation logic from the model (Value,Page,File) to generators classes. Fri, 18 Sep 2020 23:04:13 +0200 Jan Dankert Refactoring: Renaming module "cms/publish" to "cms/generator"