BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
17ba80da
Commit
17ba80da
authored
Jan 19, 2018
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document how to configure Fog with Digital Ocean Spaces
Closes gitlab-org/gitlab-ee#4419
parent
7fa0a3e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
backup_restore.md
doc/raketasks/backup_restore.md
+24
-0
No files found.
doc/raketasks/backup_restore.md
View file @
17ba80da
...
...
@@ -169,6 +169,30 @@ For Omnibus GitLab packages:
1.
[
Reconfigure GitLab
]
for the changes to take effect
#### Digital Ocean Spaces and other S3-compatible providers
Not all S3 providers are fully-compatible with the Fog library. For example,
if you see
`411 Length Required`
errors after attempting to upload, you may
need to downgrade the
`aws_signature_version`
value from the default value to
2
[
due to this issue
](
https://github.com/fog/fog-aws/issues/428
)
.
1.
For example, with
[
Digital Ocean Spaces
](
https://www.digitalocean.com/products/spaces/
)
,
this example configuration can be used for a bucket in Amsterdam (AMS3):
```ruby
gitlab_rails['backup_upload_connection'] = {
'provider' => 'AWS',
'region' => 'ams3',
'aws_access_key_id' => 'AKIAKIAKI',
'aws_secret_access_key' => 'secret123',
'aws_signature_version' => 2,
'endpoint' => 'https://ams3.digitaloceanspaces.com'
}
gitlab_rails['backup_upload_remote_directory'] = 'my.s3.bucket'
```
1.
[
Reconfigure GitLab
]
for the changes to take effect
---
For installations from source:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment