gpt4 book ai didi

ruby-on-rails - pg gem sslmode=verify-full,在哪里放置证书?

转载 作者:太空宇宙 更新时间:2023-11-03 17:47:52 26 4
gpt4 key购买 nike

有没有办法让 pg-gem 为它的 postgres 连接使用 sslmode = verify-full?这会像传递那个字符串一样简单吗?我有一个 Rails 应用程序,我想在外部数据库上建立完整的 ca 保护 ssl 连接,但我真的不知道如何设置它的 ca 部分。在 sslmode 上使用 require 默认它使用 ssl 流量,但我不知道我应该在哪里(或在什么用户下等)放置我的证书来进行验证。我是否应该将它们放在 ~/.postgresql/下,就像在正常的 psql 客户端工作流程中一样,以获取名称为 root.crt 和 postgresql.cert 以及 postgresql.key 的经过验证的 ssl 证书?

如果有帮助,我正在使用 Postgres 9.1。

为后来的人编辑:

以下 database.yml 文件似乎可以在我的开发机器上进行测试。我肯定会写一篇关于这个问题的博文,因为这是一个 PITA 来弄清楚出了什么问题。

  host: 127.0.0.1
sslcert: <%= Rails.root.join('config', 'client.crt') %>
sslkey: <%= Rails.root.join('config', 'client.key') %>
sslrootcert: <%= Rails.root.join('config', 'root.crt') %>
sslmode: verify-full
database: pg-test_development
username: postgres
password:

最佳答案

Pg gem 在内部使用 libpq,与 psql 等 PostgreSQL 工具相同的客户端库。

默认情况下,libpq~/.postgresql/ 中查找 CA 证书。

来自 the manual :

To allow server certificate verification, the certificate(s) of one or more trusted CAs must be placed in the file ~/.postgresql/root.crt in the user's home directory. (On Microsoft Windows the file is named %APPDATA%\postgresql\root.crt.)

...和...

The location of the root certificate file and the CRL can be changed by setting the connection parameters sslrootcert and sslcrl [...]

AFAIK Rails 将您放入database.yml 中的任何内容传递给Pg gem,后者将其作为连接参数传递给libpq。因此,您应该能够将键/值条目添加到您的 database.yml 节中,例如:

sslmode: verify-full
# and if you don't want to use ~/.postgresq/root.crt for the cert location, set:
sslrootcert: /path/to/my/app/root/cert.crt

IMO 将单个根证书传递给 libpq 的要求是一个设计缺陷。它应该加载受信任的证书数据库。使用 SSL 客户端证书也存在类似问题,您无法提供 keystore 和证书库,您必须为给定主机传递特定文件。听起来这对您来说可能没问题,因为您知道上游证书签名机构。

关于ruby-on-rails - pg gem sslmode=verify-full,在哪里放置证书?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31355047/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com