diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-01 12:41:37 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-01 12:41:37 +0300 |
commit | 23ee8e6257f09172e30c2bd6fd1d1fcd4d4e58b3 (patch) | |
tree | c5d2036615a247055d4af8f5ae6b1ccc8a37f5e7 /config/aws.yml.example | |
parent | cde6b8e4da6d086786a2c0adceb50eaa73485d4c (diff) | |
download | gitlab-ce-23ee8e6257f09172e30c2bd6fd1d1fcd4d4e58b3.tar.gz |
Init aws support for file storage
Diffstat (limited to 'config/aws.yml.example')
-rw-r--r-- | config/aws.yml.example | 19 |
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 |