Skip to content

Instantly share code, notes, and snippets.

@kzaitsev
Created January 15, 2014 19:44
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save kzaitsev/8443060 to your computer and use it in GitHub Desktop.
Save kzaitsev/8443060 to your computer and use it in GitHub Desktop.
Carrierwave + Selectel
CarrierWave.configure do |config|
if Rails.env.development? || Rails.env.test?
config.storage = :file
else
config.storage = :fog
config.fog_credentials = {
:provider => 'OpenStack',
:openstack_auth_url => 'https://auth.selcdn.ru/v1.0',
:openstack_username => Rails.application.secrets.openstack_username,
:openstack_api_key => Rails.application.secrets.openstack_api_key
}
config.fog_directory = Rails.application.secrets.container # required
config.fog_public = true # optional, defaults to true
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'} # optional, defaults to {}
end
end
@leemour
Copy link

leemour commented Oct 8, 2018

I updated the credentials to work with latest fog-openstack version and v2 or v3 OpenStack Keystone auth on Selectel https://gist.github.com/leemour/1cba4aa37da14136731259b9e8fb11a5.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment