Change Default Uploading for Digital Ocean Space to Public for files from Filezilla pro - digital-ocean

I have millions of small images about 1KB-5KB, which I need to upload them to the Digital Ocean Space.
I have Filezilla Pro , and I can successfully upload the files to the Digital Ocean Space using the Filezilla Pro , but when I upload those files to the Digital Ocean Space using the Filezilla Pro , their default statuses are Private.
As a result accessing those files through a URL is not possible as I get an
Access Denied Error.
Another way is using the Rclone but for that I need to upload those files to the Digital Ocean's Droplet by zipping them and then using the Rclone to upload them to Digital Ocean space.
But it's very long process because I have to do the zipping process from Windows and then transfer the files to the droplet in order to unzip them and upload them to the Digital Ocean's Droplet using Rclone.
How could I upload all of my files , directly , with a public status from Windows using the FileZilla Pro or any other client similar to it?

Related

how do i store django media on remote unix server

I have two app servers 10.22.33.54 and 10.22.33.56 and I am trying to integrate media on another server IP 10.22.30.40 I created a media directory so what are the method I can use in Django to manage media files?

How to secure VIDEO files streamed from Windows server machine?

I develop a video-streaming application. Using a machine with Windows Server I deliver mp4 video files to the application's users. All the video content is basically public in the Internet. They are simply mp4 files on a machine, with no security rules in place.
Since I want to introduce a subscription option in my application (the users of the app have to pay to view certain videos), securing the video content is a must.
My question is: how can I authenticate the video streaming?

How can i secure my wamp/www/Folder-name so that no one can play with the contents of my website

I have created a local server in my computer lab and hosted a website on it so that people on same network can use it.I am using wamp and php for my website. The computer which is made server is also used by some students so I want to secure my website from being stolen or any changes in the code by students. How can I do it?
My website is stored at the location wamp/www/my-website

how to upload image to own repository using asmx webservice from windows phone 8?

i am trying to upload an image to my own repository online. I have a webservice in asmx and i am storing path using service. i want to store image in folder that is online. can you please tell me how to upload image from windows phone 8?
WP provides a great infrastructure to upload files to your server using a BackgroundTransfer Service
The PhotoUploader from msdn provides a solution including the ServerAPI you need to handle the upload. The Solution might be for WP 7.1 but the ServerSide is fine for WP 8 and above

File download dialog for photos hosted on Amazon S3

My web application will host full size photos on Amazon S3 and we use S3 as our media server. We also allow the users to download the full-size photos. Our web server is on a different hosting company. On our web application, how can we force a File Download dialog box instead of showing the photo in browser directly from an Amazon S3 URL? For example, the image url could be "http://my.s3.amazonaws.com/12345.jpg"
One solution would be to download the image to our web server which is running Django, and then force a file download dialog, but will cost double bandwidth and double the download time as well.
Thanks!
See if you can get S3 to specify the content type of the files as application/octet-stream.
I have just verified this. In the AWS management console you can select a file, click on Properties, select the Metadata tab and then set the Content-Type to "binary/octet-stream". If it's e.g. image/jpeg it will display in the browser. If it's changed to binary/octet-stream it forces the browser to download it instead.