Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 547 Bytes

adapter_sftp.md

File metadata and controls

20 lines (16 loc) · 547 Bytes

Use the SFTP adapter

You have to provide at least a value for the host key.

# app/config/config.yml
oneup_flysystem:
    adapters:
        my_adapter:
            sftp:
                options:
                    host: 'ftp.domain.com'
                    username: 'foo'
                    root: '/upload'

For more details on the other parameters, take a look at the Flysystem documentation.

More to know