gpt4 book ai didi

svn - 将 SSL 支持添加到 docker 容器

转载 作者:太空宇宙 更新时间:2023-11-03 13:03:15 25 4
gpt4 key购买 nike

我正在使用基于 Go 的应用程序,该应用程序使用 docker-engine 在 docker 容器中运行。在此容器中,我希望将颠覆作为应用程序的一部分运行。我遇到的问题是 svn 由于 SSL 证书问题而无法访问存储库。我已经有一个证书文件,我可以将其用于我尝试访问的 svn 服务器,并且需要将其安装到 docker 容器中,以便容器内的 svn 可以使用它。

关于如何做到这一点有什么建议吗?我可以在 dockerfile 中执行此操作吗?

最佳答案

查看“SVN Runtime Configuration Area”,您可以指定 SVN 需要信任哪个证书的属性

ssl-authority-files

This is a semicolon-delimited list of paths to files containing certificates of the certificate authorities (or CAs) that are accepted by the Subversion client when accessing the repository over HTTPS.

您需要 COPY (in your Dockerfile) :

  • 证书
  • 具有该属性的系统范围的配置区域(/etc/subversion/servers),或每个用户的配置区域(~/.subversion/servers)设置为该证书。

该服务器文件的全局部分如下所示:

[global]
ssl-authority-files=/etc/ssl/certs/example.pem

If you need to trust several certificates then this can be done by placing them in a semicolon-separated list:

[global]
ssl-authority-files=/etc/ssl/certs/example.pem;/etc/ssl/certs/another-example.pem

关于svn - 将 SSL 支持添加到 docker 容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33173797/

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