Skip to content

Amazon S3

Integrate Amazon S3 with Sngine in a few easy steps.

Create the bucket

  1. Go to https://console.aws.amazon.com/console/home and sign in with your Amazon account

  2. Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

    Click Services and select IAM under Security, Identity & Compliance and create a new user as the followings

  3. Click Services and select S3 under Storage

    Click Services and select S3 under Storage

  4. Click Create bucket

    Click Create bucket

    Click Create bucket

Make the bucket public

  1. Make sure you have given public access to your bucket

    Make sure you have given public access to your bucket

  2. Also make sure you added the Bucket Policy by adding this JSON code in Bucket Policy. You'll need to replace YOUR-BUCKET-NAME with your full bucket name

    {
      "Version": "2012-10-17",
      "Statement": [
        {
                "Sid": "AllowPublicRead",
                "Effect": "Allow",
                "Principal": {
                    "AWS": "*"
                },
                "Action": "s3:GetObject",
                "Resource": "arn:aws:s3:::YOUR-BUCKET-NAME/*"
            }
        ]
    }
                      

    Also make sure you added the Bucket Policy by adding this JSON code in Bucket Policy. You'll need to replace…

  3. Also make sure you configured the CORS configuration by adding this JSON code

    [
        {
            "AllowedHeaders": [
                "*"
            ],
            "AllowedMethods": [
                "GET",
                "HEAD",
                "PUT",
                "POST",
                "DELETE"
            ],
            "AllowedOrigins": [
                "*"
            ],
            "ExposeHeaders": [],
            "MaxAgeSeconds": 3000
        }
    ]
                      

    Also make sure you configured the CORS configuration by adding this JSON code

Add the credentials to Sngine

  1. Go to your Sngine Admin Panel → Settings → Upload Settings and paste both Keys

    Go to your Sngine Admin Panel → Settings → Upload Settings and paste both Keys