Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update image-manipulation.md #1577

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/collections/docs/image-manipulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ You may choose to save your cached Glide images to somewhere CDN based, like Ama
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'), // [tl! **]
'bucket' => env('AWS_BUCKET_GLIDE'), // [tl! **]
'url' => env('AWS_URL_GLIDE'), // [tl! **]
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'visibility' => 'public', // [tl! **]
Expand All @@ -212,7 +212,7 @@ Make sure that the `visibility` is `public` and that the `url` points to the cor
:::

:::warning
Don't use the same disk or bucket as your source images. If you were you to clear your Glide cache (e.g. when using the `glide:clear` command) the whole disk will be emptied.
Don't use the same disk, bucket or url as your source images. If you were you to clear your Glide cache (e.g. when using the `glide:clear` command) the whole disk will be emptied.
:::

## Path Cache Store
Expand Down