Skip to content

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎assets/runtime/config/gitlabhq/gitlab.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -512,9 +512,9 @@ production: &base
512512
aws_secret_access_key: '{{AWS_BACKUP_SECRET_ACCESS_KEY}}'
513513
# The remote 'directory' to store your backups. For S3, this would be the bucket name.
514514
remote_directory: '{{AWS_BACKUP_BUCKET}}'
515-
# # Use multipart uploads when file size reaches 100MB, see
516-
# # http://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html
517-
# multipart_chunk_size: 104857600
515+
# Use multipart uploads when file size reaches 100MB, see
516+
# http://docs.aws.amazon.com/AmazonS3/latest/dev/uploadobjusingmpu.html
517+
multipart_chunk_size: {{AWS_BACKUP_MULTIPART_CHUNK_SIZE}}
518518
# # Turns on AWS Server-Side Encryption with Amazon S3-Managed Keys for backups, this is optional
519519
# # encryption: 'AES256'
520520
# Fog storage connection settings, see http://fog.io/storage/ .

‎assets/runtime/env-defaults

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ AWS_BACKUP_PATH_STYLE=${AWS_BACKUP_PATH_STYLE:-false}
157157
AWS_BACKUP_ACCESS_KEY_ID=${AWS_BACKUP_ACCESS_KEY_ID}
158158
AWS_BACKUP_SECRET_ACCESS_KEY=${AWS_BACKUP_SECRET_ACCESS_KEY}
159159
AWS_BACKUP_BUCKET=${AWS_BACKUP_BUCKET}
160-
AWS_BACKUP_MULTIPART_CHUNK_SIZE=${AWS_BACKUP_MULTIPART_CHUNK_SIZE}
160+
AWS_BACKUP_MULTIPART_CHUNK_SIZE=${AWS_BACKUP_MULTIPART_CHUNK_SIZE:-104857600}
161161

162162
### GCS BACKUPS
163163
GCS_BACKUPS=${GCS_BACKUPS:-false}

0 commit comments

Comments
 (0)
Please sign in to comment.