From 96711a9d3f7febaf0a1b74a39891d4c2f846dee2 Mon Sep 17 00:00:00 2001 From: Paul Thornthwaite Date: Wed, 23 Jan 2013 12:39:14 +0000 Subject: [PATCH] Removes docs since they are in wrong repo Was added around the time the fog.io docs were migrated to the fog.github.com repo and were missed. http://git.io/C-PivA --- docs/storage/aws.markdown | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 docs/storage/aws.markdown diff --git a/docs/storage/aws.markdown b/docs/storage/aws.markdown deleted file mode 100644 index ad5101014..000000000 --- a/docs/storage/aws.markdown +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: default -title: Storage ---- - -## AWS Specific Options - -Here's a couple Fog features specific only to AWS S3. - -**Encryption**. Amazon provides the option to AES256 encrypt files at rest on -upload by setting the "x-amz-server-side-encryption" HTTP request header to -AES256. You can short hand set this HTTP header via the ````encryption```` key -value pair. For example, - - # encrypt file at rest - file = directory.files.create( - :key => 'resume.html', - :body => File.open("/path/to/my/resume.html"), - :public => true, - :encryption => 'AES256' - )