Home Download Docs Code Community

Storage

S3

Amazon S3 is a high-durability key-value store.

To use S3 with Perkeep, you need to:

It is advisable to use a dedicated key/secret for Perkeep:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Resource": [
                "arn:aws:s3:::YOUR_BUCKET_NAME",
                "arn:aws:s3:::YOUR_BUCKET_NAME/*"
            ],
            "Sid": "Stmt1464826210000",
            "Effect": "Allow",
            "Action": [
                "s3:DeleteObject",
                "s3:GetBucketLocation",
                "s3:GetObject",
                "s3:ListBucket",
                "s3:PutObject"
            ]
        }
    ]
}

Finally, add the s3 config line to your Perkeep server-config.json:

"s3": "accessKey:secretKey:bucketName[/optional/dir][:hostname]"

B2

Backblaze B2 is simple, reliable, affordable object storage.

To use b2 with Perkeep, you need to:

It is advisable to create a dedicated Application Key for Perkeep:

Finally, add the b2 config line to your perkeep server-config.json:

"b2": "accessKey:secretKey:bucketName[/optional/dir][:hostname]"

Google Cloud Storage (GCS)

Google Cloud Storage (GCS) Reliable and secure object storage.

To use GCS with Perkeep, you need to:

"googlecloudstorage": "clientId:clientSecret:refreshToken:bucketName[/optional/dir]"

NOTE: The clientId and clientSecret could come from $HOME/.config/gcloud/application_default_credentials.json or you could create a new service account following this guide.

Website layout inspired by memcached.
Content by the authors.