Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions sourcecode/hub/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false
CDN_WITH_PREFIX=

SCOUT_DRIVER=meilisearch
MEILISEARCH_HOST=http://meilisearch:7700
Expand Down
2 changes: 1 addition & 1 deletion sourcecode/hub/config/filesystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'url' => env('AWS_URL', env('CDN_WITH_PREFIX')),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => true,
Expand Down
Loading