Questions tagged [digital-ocean-spaces]

92 questions
0
votes
0 answers

Laravel 9 Digitalocean spaces upload file

$filename = time() . $file->getClientOriginalName(); Storage::disk('do')->put("public/images/{$directory}/{$filename}", File::get($file), 'public'); return "images/avatars/{$filename}"; I upload file there is not any error but…
0
votes
1 answer

Issues in uploading files to digital ocean spaces from laravel

It's almost 48 hours that I'm facing an issue with the files upload to Digital Ocean spaces from laravel and I can't make it work. I've successfully built a livewire component that handle the multiple upload of images, each image is stored in the…
Gianmarco
  • 69
  • 1
  • 9
0
votes
1 answer

azcopy between digitalocean and azure

I want to copy files from digitalocean into azure storage, I used this command : sudo azcopy copy "https://myspace.fra1.digitaloceanspaces.com" "https://myspace.blob.core.windows.net/myspace" --recursive am getting this error : INFO:…
Lutaaya Huzaifah Idris
  • 3,596
  • 8
  • 38
  • 77
0
votes
1 answer

Can I give access to all domains in CORS headers DigitalOcean Spaces?

I'm trying to set up CORS. Is it possible to give access to all domains in my space? I tried something like this but it doesn't work:
0
votes
1 answer

How zip download from DigitalOcean spaces in laravel?

I have some folders in spaces. I want to create a zip of a folder that has some sub-folders. But I can not do that. I am able to do it in local storage. But from spaces I can not do. My project is in php/laravel. Can anyone help me out in this…
ash
  • 11
  • 3
0
votes
1 answer

How to upload file to S3 (digital ocean) without saving temp file in node.js

I need to save file in S3 Digital Ocean space by URL. It can't be downloaded and then saved to S3, because we use firebase-functions, and there restricted to use file system. Is there way to save it directly from url or other ways? For example by…
0
votes
1 answer

duplicity error only during retrieve: boto.exception.NoAuthHandlerFound

When attempting to retrieve a file that was backed up to a DigitalOcean S3 compatible instance using these commands... $ source "$HOME/.duplicity/.env_variables.conf" $ sudo duplicity --verbosity notice --encrypt-sign-key=$GPG_KEY --log-file…
PatrickReagan
  • 567
  • 5
  • 10
0
votes
0 answers

requests.exceptions ConnectionError Connection aborted.', ConnectionResetError(104, 'Connection reset by peer')

We have implemented a program to broadcast the commentary of sports, which will take data from firebase when firebase is triggered by data and send data to telegram channel. Everything has been good for so long. But recently we have been facing this…
0
votes
1 answer

Nginx Reverse Proxy with digital ocean spaces returning bad request because of unicode characters

I have following location block in my server configuration: location ~^/media/(.+)/(.+)$ { error_log /home/user/Server/nginx/logs/error.log; access_log /home/user/Server/nginx/logs/access.log; proxy_pass …
Future King
  • 3,819
  • 6
  • 28
  • 37
0
votes
1 answer

Django admin Resource Policy COEP ERR_BLOCKED_BY_RESPONSE

The static files of my Django admin site are on a S3 bucket (DigitalOcean Spaces actually) and in the Console I get a ERR_BLOCKED_BY_RESPONSE.NotSameOriginAfterDefaultedToSameOriginByCoep 200 In the network panel all the static files are considered…
0
votes
1 answer

the image is not loading due to security content policy strapi

I am using digital ocean spaces to hold my upload files and strapi as a backend i am getting this error i am able to upload the image on my digital ocean space so this means configration is all ok 'and there is something to do with security policy…
sarangkkl
  • 773
  • 3
  • 15
0
votes
1 answer

How to stream from Digital Ocean Spaces using Video.js

I am trying to stream video and audio files to the video.js player on my site from Digital Ocean Spaces, which is similar to Amazon AWS S3 and uses the aws-sdk. Currently the video takes a while to download and then when the download completes, it…
Billy
  • 25
  • 5
0
votes
1 answer

Upload files to Digital Ocean Spaces with Next.js and AWS S3

I'm trying to make a files uploader (to Digital Ocean Spaces) using Next.js and AWS S3. Everything works fine, but if I set my Digital Ocean Spaces env variables in the Next.js config file it fails. I have no idea why. Here's my code: import aws…
0
votes
1 answer

Content-Disposition in file body from s3 presigned URL

I'm attempting to use presigned S3 URLs to PUT/GET a file via requests but an getting additional information in the uploaded file: This is another Test Document! The uploaded file will look…
mccatnm
  • 212
  • 1
  • 12
0
votes
1 answer

Multiple users uploading into the same storage account via desktop app

would love to hear your ideas. In this project, multiple users (let's say 1000 users) will upload files into the same storage account (AWS S3, Azure Blob Storage or DigitalOcean Spaces) using a Windows desktop app C# The desktop app does have user…