Support custom Azure Blob Storage domains
Users of Azure Blob Storage, particularly those in China, may need to customize the Azure endpoint. This change introduces a `azure_storage_domain` parameter to be passed in the connection storage settings. By default, `blob.core.windows.net` will be used. Example other mappings: 1. China: blob.core.chinacloudapi.cn 2. US Government: blob.core.usgovcloudapi.net 3. Germany: blob.cloudapi.de This change requires Workhorse changes as well: https://gitlab.com/gitlab-org/gitlab-workhorse/-/merge_requests/575. Otherwise, the default domain will be used. Documentation is in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/40693.
Showing
... | ... | @@ -119,7 +119,7 @@ gem 'fog-local', '~> 0.6' |
gem 'fog-openstack', '~> 1.0' | ||
gem 'fog-rackspace', '~> 0.1.1' | ||
gem 'fog-aliyun', '~> 0.3' | ||
gem 'gitlab-fog-azure-rm', '~> 0.7', require: false | ||
gem 'gitlab-fog-azure-rm', '~> 0.8', require: false | ||
# for Google storage | ||
gem 'google-api-client', '~> 0.33' | ||
... | ... |
Please register or sign in to comment