Hello !
I have a trouble with the configuration of my DigitalOcean space in my Laravel application. I created a fresh new blank project with laravel new
but the problem still here.
So this is my config : .env
DO_ACCESS_KEY_ID=MY_KEY
DO_SECRET_ACCESS_KEY=MY_SECRET_KEY
DO_DEFAULT_REGION=FRA1
DO_BUCKET=nody
DO_ENDPOINT=https://nody.fra1.digitaloceanspaces.com
filesystem.php
'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'),
],
Then I modify my route to make a basic test :
Route::get('/', function () {
Storage::disk('do')->put('test.txt', 'Hello, DigitalOcean Spaces!');
return view('welcome');
});
(Yes I have install “league/flysystem-aws-s3-v3” package) Nothing happen and I don’t know how I can get feedback on what’s going on under the hood :(
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Heya, @thomasdl
Ensure your
.env
file contains the correct environment variables:Note:
DO_ENDPOINT
should not include the bucket name, just the base URL for the region.Let us know how it goes!