Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-01 13:41:37 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-01 13:41:37 +0400
commit23ee8e6257f09172e30c2bd6fd1d1fcd4d4e58b3 (patch)
treec5d2036615a247055d4af8f5ae6b1ccc8a37f5e7 /config/aws.yml.example
parentcde6b8e4da6d086786a2c0adceb50eaa73485d4c (diff)
Init aws support for file storage
Diffstat (limited to 'config/aws.yml.example')
-rw-r--r--config/aws.yml.example19
1 files changed, 19 insertions, 0 deletions
diff --git a/config/aws.yml.example b/config/aws.yml.example
new file mode 100644
index 00000000000..29d029b078d
--- /dev/null
+++ b/config/aws.yml.example
@@ -0,0 +1,19 @@
+# See https://github.com/jnicklas/carrierwave#using-amazon-s3
+# for more options
+production:
+ access_key_id: AKIA1111111111111UA
+ secret_access_key: secret
+ bucket: mygitlab.production.us
+ region: us-east-1
+
+development:
+ access_key_id: AKIA1111111111111UA
+ secret_access_key: secret
+ bucket: mygitlab.development.us
+ region: us-east-1
+
+test:
+ access_key_id: AKIA1111111111111UA
+ secret_access_key: secret
+ bucket: mygitlab.test.us
+ region: us-east-1