InvalidArgumentException PHP 8.1.13 9.52.4 Missing required client configuration options: region: (string) A "region" configuration value is required for the "s3" service (e.g., "us-west-2").
xyh2132 opened this issue · 9 comments
I have already configured AWS S3 according to the tutorial.
If a Docker deployment that can be used on the server is provided, it can solve these problems.
you should add the 'do' configuration in .env according to config/filesystems.php
and you should update your mysql transcribe table (include at least a 'public' true record)
you should add the 'do' configuration in .env according to config/filesystems.php
and you should update your mysql transcribe table (include at least a 'public' true record)
Can you be more specific? I don't understand and need your help.
The error is caused:
"it wants to get the first public available media file from a digitalocean's S3 compatible provider, it will return error because you do not configure your digitalocean's storage correctly (me too), you can remove the code."
I post my modification in your another issue , it should run successfully if you applied my modification.
Looking at the error you need to configure the AWS credentials for the do
filesystem.
Storage::disk
indicates that the do
filesystem is used
'do' => [
'driver' => 's3',
'key' => env('DO_ACCESS_KEY_ID'),
'secret' => env('DO_SECRET_ACCESS_KEY'),
'region' => env('DO_DEFAULT_REGION'),
'bucket' => env('DO_BUCKET'),
'endpoint' => env('DO_ENDPOINT'),
'use_path_style_endpoint' => env('DO_USE_PATH_STYLE_ENDPOINT', true),
],
Going by the following snippet from config/filesystems.php, you need to set the following ENV variables (instead of the default S3 ones):
DO_ACCESS_KEY_ID
DO_SECRET_ACCESS_KEY
DO_DEFAULT_REGION
DO_BUCKET
DO_ENDPOINT
DO_USE_PATH_STYLE_ENDPOINT
DO_ENDPOINT= xxx
DO_USE_PATH_STYLE_ENDPOINT= xxx
I don't know what to enter for xxx above, can you tell me?
DO_ENDPOINT= xxx
Depends on your region. For example: https://nyc3.digitaloceanspaces.com
you can find this in your DO Spaces config