Я скопировал настройки из адаптера S3 и из Пример Ruby Azure
Добавьте драгоценный камень Azure BLOB в ваш Gemfile: gem 'azure-storage-blob'
create config / initializers / sitemap_generator / azure_adapter.rb:
require 'azure/storage/blob'
module SitemapGenerator
# Class for uploading sitemaps to Azure blobs using azure-storage-blob gem.
class AzureAdapter
#
# @option :storage_account_name [String] Your Azure access key id
# @option :storage_access_key [String] Your Azure secret access key
# @option :container [String]
def initialize
@storage_account_name = 'your account name'
@storage_access_key = 'your key'
@container = 'your container name (created already in Azure)'
end
# Call with a SitemapLocation and string data
def write(location, raw_data)
SitemapGenerator::FileAdapter.new.write(location, raw_data)
credentials = {
storage_account_name: @storage_account_name,
storage_access_key: @storage_access_key
}
client = Azure::Storage::Blob::BlobService.create(credentials)
container = @container
content = ::File.open(location.path, 'rb') { |file| file.read }
client.create_block_blob(container, location.filename, content)
end
end
end
- Убедитесь, что контейнер, создаваемый в Azure, является контейнером «BLOB-объектов», поэтому этот контейнер не является общедоступным, но внутри него находятся большие двоичные объекты..
, а затем в config / sitemaps.rb:
SitemapGenerator::Sitemap.sitemaps_host = 'https://[your-azure-address].blob.core.windows.net/'
SitemapGenerator::Sitemap.sitemaps_path = '[your-container-name]/'
SitemapGenerator::Sitemap.adapter = SitemapGenerator::AzureAdapter.new
Это должно сделать это!