0

我有两个在不同端口上运行的 Rails 应用程序。我试图从一个应用程序使用另一个应用程序的 API。这是 APP_1 中 Product.rb 模型的代码。

class Product < ActiveResource::Base
  self.site = "https://localhost:3000"
  self.ssl_options = {:cert         => OpenSSL::X509::Certificate.new(File.open(pem_file)),
                      :key          => OpenSSL::PKey::RSA.new(File.open(pem_file)),
                      :ca_path      => "/path/to/OpenSSL/formatted/CA_Certs",
                      :verify_mode  => OpenSSL::SSL::VERIFY_PEER}
end

我为 Product 模型设置了控制器和路由。当我运行 APP_1 我得到

 undefined local variable or method `pem_file' for Product:Class

谁能告诉我如何编写 pem 文件,什么是 pem 文件?

4

1 回答 1

1

查看: https ://serverfault.com/questions/9708/what-is-a-pem-file-and-how-does-it-differ-from-other-openssl-generated-key-file

这应该足以让您开始使用谷歌搜索和寻找您的解决方案。

于 2013-04-24T08:22:03.017 回答