ExportAction download file on Digital Ocean Spaces

hi all, as i mention in the title i've and export action like this:

->headerActions([
                ExportAction::make()
                    ->exporter(UserExporter::class)
                    ->label('Export USers')                 
                    ->icon('heroicon-o-document-text')
                    ->color('primary'),
            ]);


If i set the FILAMENT_FILESYSTEM_DISK=local or not set it all it's ok: after i click export button i receive a notification in which i have the link to download the csv or xlsx and all that's fine.

But if i set FILAMENT_FILESYSTEM_DISK=s3 all it's ok until i try to download the file. If i click on link to csv or xlsx i receive and error page like the image shows.

the error is in :
Routing
Controller
Filament\Actions\Exports\Http\Controllers\DownloadExport

Route name
filament.exports.download

Middleware
filament.actions


What's wrong with this? Consider that i only want to download and not store those files.
#help #Export download link
Was this page helpful?