Commit cd87fb595344144e5acd4ee487d5b86993fddc99
1 parent
65df38a2
Exists in
master
and in
9 other branches
Use correct syntax in AWS configuration example
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
README.md
@@ -434,10 +434,10 @@ GitLab instance on Amazon S3. | @@ -434,10 +434,10 @@ GitLab instance on Amazon S3. | ||
434 | ``` | 434 | ``` |
435 | # /etc/gitlab/gitlab.rb | 435 | # /etc/gitlab/gitlab.rb |
436 | gitlab_rails['aws_enable'] = true | 436 | gitlab_rails['aws_enable'] = true |
437 | -gitlab_rails['aws_access_key_id'] = AKIA1111111111111UA | ||
438 | -gitlab_rails['aws_secret_access_key'] = secret | ||
439 | -gitlab_rails['aws_bucket'] = my_gitlab_bucket | ||
440 | -gitlab_rails['aws_region'] = us-east-1 | 437 | +gitlab_rails['aws_access_key_id'] = 'AKIA1111111111111UA' |
438 | +gitlab_rails['aws_secret_access_key'] = 'secret' | ||
439 | +gitlab_rails['aws_bucket'] = 'my_gitlab_bucket' | ||
440 | +gitlab_rails['aws_region'] = 'us-east-1' | ||
441 | ``` | 441 | ``` |
442 | 442 | ||
443 | ## Building your own package | 443 | ## Building your own package |