Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

I’m looking for a way to create an image resize service based on DO Object Storage.
Is it possible to froward all image requests to the storage and when the file is not found redirect request to the resizing backend?
It’s similar to the Nginx config:
# check if image already exists
location ~ /(\d+x\d+/.*) {
try_files /$1 @img;
}
# This saves the resized image locally.
location @img {
proxy_pass $full_uri;
proxy_store /var/www/cache/store/img/$full_uri;
}
danh23072004
4287c71658bd4ea39bef277d491b1c
4287c71658bd4ea39bef277d491b1c
mixbayes
Benjamin Listwon
Michael Campbell
Richard Leishman
Tushar Kumar Shaha
mark lefler
542092c3dc874f6b86df2b510e7ee8
mark lefler
platestheapp