Object Storage — S3-Compatible Cloud Storage on EasyCloudify
TL;DR — EasyCloudify Object Storage is S3-compatible scalable storage for any amount of data — backups, media, static assets, and application files — accessible globally from your applications.
What is EasyCloudify Object Storage?
EasyCloudify Object Storage is a scalable, S3-compatible cloud storage service that lets you store and retrieve any amount of unstructured data including backups, media files, static website assets, and application-generated files. Because EasyCloudify Object Storage follows the S3 API standard, any tool or library that supports S3 works with it without modification. Access Object Storage at /cloudpanel/storage.
Before You Start
- You have an active Object Storage plan subscription (see Plans & Billing)
How to Access Object Storage
In the sidebar, click Storage. You land on /cloudpanel/storage, which loads the Object Storage Manager component.
Object Storage Manager Features
The Object Storage Manager provides a complete interface for managing your storage:
Buckets
- Create a bucket — A bucket is a top-level container for your files
- View existing buckets — See all buckets in your account
- Configure bucket settings — Set access permissions (public or private) and region
- Delete a bucket — Remove empty buckets
Files and Objects
Within each bucket:
- Upload files — Upload individual files or folders
- Browse objects — Navigate your bucket's directory structure
- Download files — Retrieve stored objects
- Delete objects — Remove files from your bucket
- Generate presigned URLs — Create temporary URLs that allow time-limited access to private objects
Access Keys
EasyCloudify Object Storage uses access key pairs for programmatic access:
- Create an access key — Generate a key ID and secret for S3 API access
- View existing keys — See all access keys associated with your account
- Delete a key — Revoke access for a specific key pair
Connecting Your Application to Object Storage
Use any S3-compatible client library to connect:
Endpoint: [Your EasyCloudify storage endpoint]
Region: [Your bucket region]
Access Key: [Your key ID from the Access Keys section]
Secret Key: [Your secret key from the Access Keys section]
💡 Tip: Store your access key ID and secret in environment variables — never hardcode them in your application source code.
CDN for Object Storage
Combine EasyCloudify Object Storage with the CDN feature to serve stored files from edge locations worldwide, reducing download latency for media and static assets.
Frequently Asked Questions
Is EasyCloudify Object Storage compatible with AWS S3 SDKs?
Yes. EasyCloudify Object Storage uses the S3 API. Any AWS SDK (@aws-sdk/client-s3, boto3, etc.) works with EasyCloudify Object Storage by changing the endpoint URL to your EasyCloudify storage endpoint.
Can I host a static website from Object Storage?
Yes. Enable public access on a bucket and configure it as a static website host to serve HTML, CSS, and JS files directly.