Add a 'region' to the backup upload connection

This commit is contained in:
Jacob Vosmaer 2014-09-30 12:02:37 +02:00
parent 0c29cb3451
commit 794078a32a
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,7 @@ For omnibus packages:
```ruby
gitlab_rails['backup_upload_connection'] = {
'provider' => 'AWS',
'region' => 'eu-west-1',
'aws_access_key_id' => 'AKIAKIAKI',
'aws_secret_access_key' => 'secret123'
}
@ -73,6 +74,7 @@ For installations from source:
# Fog storage connection settings, see http://fog.io/storage/ .
connection:
provider: AWS
region: eu-west-1
aws_access_key_id: AKIAKIAKI
aws_secret_access_key: 'secret123'
# The remote 'directory' to store your backups. For S3, this would be the bucket name.