SSL 目录结构

发布于 2024-09-30 14:10:42 字数 249 浏览 3 评论 0原文

我有一个网络应用程序,现在我被告知要为此实施 SSL。我以前从未这样做过,但我似乎已经从互联网文档中了解了如何做到这一点。

但是,我的应用程序有两个方面:用户界面在 SSL 下很好,第二个方面是我有一些需要绕过证书的文件。这些文件由远程计算机访问,并共享某些用户界面文件的相同库。

我已经使用共享库的符号链接来管理绕过,但我不确定这是否是正确的方法。我的意思是,如果我不使用共享库的符号链接,我就无法使用这些脚本。

预先感谢您的任何光!

I've got a web app and now I've been told to implement SSL for that. I've never done that before, but I seem to have understood from Internet docs on how to do that.

But, my app has two sides: the user interface which is fine under SSL and the second side is I have some files that need to bypass the certificate. These files are accessed by remote machines and share the same libraries of some user interface files.

I've managed the bypass using symbolic links for the shared libraries but I'm not sure if this is the proper way to do it. I mean, if I don't use symbolic links to the shared libraries I can't use these scripts.

Thanks in advance for any light!

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

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

发布评论

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

评论(1

泼猴你往哪里跑 2024-10-07 14:10:43

您的意思是您正在从另一台计算机调用网页但您想绕过证书吗?您通常可以使用curl来执行此操作:curl --no-check-certificate {url}

否则,您可能可以在方案(https / http)中调用那些不带“s”的文件,就可以了。

Do you mean you are calling the web pages from another machine but you want to bypass the cert? You can usually use curl for this: curl --no-check-certificate {url}

Otherwise you can probably just call those files without the 's' in the scheme (https / http) and be fine.

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