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.

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.
I think you can:
Just simply serve static files on that droplet using some http server (i.e nginx, apache). Here’s a docs from nginx on how to serve static file https://docs.nginx.com/nginx/admin-guide/web-server/serving-static-content/
You can go the more complex way of hosting an S3 compatible object open source object storage solution like minio https://github.com/minio/minio if you want to mimic S3 / Spaces functionality (uploads, etc)
Hope that helps, thanks