Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.05 KB

adapter_fallback.md

File metadata and controls

30 lines (23 loc) · 1.05 KB

Use the Fallback adapter

The litipk/flysystem-fallback-adapter allows Flysystem to read from a fallback adapter when the files are not available through the main adapter. There is a 'forceCopyOnMain' option which copies files to the main filesystem when the are read from the fallback. This option is disabled by default.

Set this up by first defining the main and fallback adapters through flysystem. Then tie these together through the fallback adapter:

oneup_flysystem:
    adapters:
        s3_upload:
            awss3v3:
                client: acme.s3_client
                bucket: ~
                prefix: ~
        local_upload:
            local:
                directory: "%kernel.root_dir%/../uploads"
        upload_fallback:
            fallback:
                mainAdapter: s3_upload
                fallback: local_upload
                forceCopyOnMain: ~

More to know