Skip to content

Commit

Permalink
FIX: wrong key in object-stroage config in filesystem.md (#1696)
Browse files Browse the repository at this point in the history
"options:" does not exist anymore in config and was not removed here but later in the docs. This will result in an "access denied" error as soon as file system calls are made, despite valid credentials.
  • Loading branch information
GerDner authored Feb 25, 2025
1 parent ac10005 commit 51f92f9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions guides/hosting/infrastructure/filesystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,10 @@ shopware:
bucket: "{{AWS_BUCKET}}"
region: "{{AWS_REGION}}"
endpoint: "{{AWS_ENDPOINT}}"
options:
visibility: "public"
credentials:
key: "{{AWS_ACCESS_KEY_ID}}"
secret: "{{AWS_SECRET_ACCESS_KEY}}"
visibility: "public"
credentials:
key: "{{AWS_ACCESS_KEY_ID}}"
secret: "{{AWS_SECRET_ACCESS_KEY}}"
theme:
type: "local"
url: "https://your.domain/public"
Expand Down

0 comments on commit 51f92f9

Please sign in to comment.