Welcome to Vaultly

Login to your AWS S3

Setup Your S3 Bucket

Configure your S3 bucket for Chat Storage access.

1. Configure CORS Policy

1.Go to your AWS S3 Console
2.Select your bucket → Permissions tab
3.Find Cross-origin resource sharing (CORS)
4.Click Edit and paste the JSON below
CORS Configuration
{
  "AllowedHeaders": [
    "*"
  ],
  "AllowedMethods": [
    "GET",
    "PUT",
    "POST",
    "DELETE",
    "HEAD"
  ],
  "AllowedOrigins": [
    "https://vaultly.kheti.me"
  ],
  "ExposeHeaders": [
    "ETag"
  ],
  "MaxAgeSeconds": 3000
}

2. Required IAM Permissions

Your AWS credentials need these S3 permissions:

s3:ListBuckets3:GetObjects3:PutObjects3:DeleteObject