Skip to content

**THIS EXTENSION IS NOT MAINTAINED ANYMORE** - Magento CDN module that allows hosting all media on AWS S3. A must when you need to scale Magento horizontally.

License

Cloudxtreme/cdn-17

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MageFM CDN

This is a Magento CDN module, built to use when you need scale multiple Magento instances horizontally, avoinding the need of tools like s3fs, rsync, etc to keep the media folder in-sync on every instance.

Features

  • Store product images on CDN;
  • Store merged CSS and Javascript files on CDN;
  • Upload product images directly to CDN;

Supported storages

  • Amazon Simple Storage Service

Installation

  1. Copy all files to the Magento directory;
  2. Clean your cache;
  3. Configure your Amazon S3 credentials at System > Configuration > MageFM > CDN;
  4. Configure your Base Media URL at System > Configuration > General > Web;

Configuring IAM

It is recommended to create a specific IAM userfor handling files on S3. To avoid permission problems, use the following policy:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "Stmt1393288415000",
      "Effect": "Allow",
      "Action": [
        "s3:DeleteObject",
        "s3:GetObject",
        "s3:GetObjectAcl",
        "s3:PutObject",
        "s3:PutObjectAcl",
        "s3:ListBucket"
      ],
      "Resource": [
        "arn:aws:s3:::bucket-name",
        "arn:aws:s3:::bucket-name/*"
      ]
    }
  ]
}

Don't forget to change the bucket-name.

About

**THIS EXTENSION IS NOT MAINTAINED ANYMORE** - Magento CDN module that allows hosting all media on AWS S3. A must when you need to scale Magento horizontally.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%