将雾与回形针一起用于机架空间云文件 (EU)

发布于 2024-12-14 13:34:45 字数 262 浏览 3 评论 0原文

我陷入了使用回形针欧洲rackspace云进行身份验证的困境。我还将这一行添加到凭据中:

:rackspace_auth_url => "lon.auth.api.rackspacecloud.com"

但这不会改变任何内容。它仍然尝试通过美国云进行身份验证。

有人启动并运行这个吗?

提前致谢!

i'm stuck authenticating to the europe rackspace cloud with paperclip and fog. i also added this line to the credentials:

:rackspace_auth_url => "lon.auth.api.rackspacecloud.com"

but this doesnt change anything. it still tries to authenticate with the us cloud.

has anyone got this up and running?

thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞旧 2024-12-21 13:34:45

我有这个设置与欧盟机架空间一起使用。将以下内容添加到您的环境文件之一。或者根据每个模型进行配置。

config.paperclip_defaults = {
  :storage          => :fog,
  :fog_directory    => 'uploaded_images',
  :fog_public       => true,
  :fog_credentials  => {
    :provider           => 'Rackspace',
    :rackspace_username => 'username',
    :rackspace_api_key  => 'key',
    :rackspace_auth_url => 'lon.auth.api.rackspacecloud.com'
  }
}

需要注意的一件事是,使用回形针 url 方法时,网址是双重编码的,因此您需要在视图中执行以下操作:

user.avatar.url(:thumb, { :escape => false })

I have this setup working with the EU rackspace. Add the following to one of your environment files. Or configure it on a per model basis.

config.paperclip_defaults = {
  :storage          => :fog,
  :fog_directory    => 'uploaded_images',
  :fog_public       => true,
  :fog_credentials  => {
    :provider           => 'Rackspace',
    :rackspace_username => 'username',
    :rackspace_api_key  => 'key',
    :rackspace_auth_url => 'lon.auth.api.rackspacecloud.com'
  }
}

One thing to note is that the urls are double encoded when using the paperclip url method so you will need to do something like this in your view:

user.avatar.url(:thumb, { :escape => false })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文