- Issue created by @drupal_dev24
- Issue was unassigned.
Configured GCS storage using this module Flysystem - Google Cloud Storage - CORS → and the file successfully uploaded to GCS bucket having Uniform access control.
$settings['flysystem'] = [
'cloud-storage' => [
'driver' => 'gcs',
'config' => [
'bucket' => 'bucket_name',
'keyFilePath' => '/serviceaccount.json',
'projectId' => 'google-project-id',
'requestTimeout' => 5,
],
'cache' => true, // Cache filesystem metadata.
],
];
Now the image embedded in the content and showing the storage path on hover the attachment. But image not showing and have access denied issue.
How it can solve from module itself?
Active
1.0
Code