Hallo Zusammen,
wir haben erfolgreich den S3 Adapter eingebaut und mit Cloudfront verknüpft.
Wenn man nun in der Console
php bin/console sw:media:migrate --from=local --to=s3
ausführt, funktioniert alles wunderbar und alle Media Files kommen zu Cloudfront. Aber automatisiert (sprich upload einer Media File im Shopware Backend) wird leider gar nix zu S3 hochgeladen, trotzdem liveMigration aktiviert ist. Hier unsere config
‚cdn‘ => [
‚backend‘ => ‚local‘,
‚strategy‘ => ‚md5‘,
‚liveMigration‘ => true,
‚adapters‘ => [
‚local‘ => [
‚type‘ => ‚local‘,
‚mediaUrl‘ => ‚cloudfront URL‘
],
‚s3‘ => [
‚type‘ => ‚s3‘,
‚mediaUrl‘ => ‚S3 URL‘,
‚bucket‘ => ‚xxx‘,
‚region‘ => ‚eu-central-1‘,
‚endpoint‘ => null,
‚credentials‘ => [
‚key‘ => ‚xxx‘,
‚secret‘ => ‚xxx‘,
],
],
],
],
Was haben wir übersehen, hat jemand einen Tipp? Danke