gpt4 book ai didi

authentication - 除了本地网络上的 Nginx 身份验证

转载 作者:行者123 更新时间:2023-12-04 18:10:58 25 4
gpt4 key购买 nike

来自 apache2 的一项我无法实现的功能;仅需要对外部访问进行身份验证,但对本地网络上的用户可免费访问。
任何想法如何轻松处理这种情况?

任何帮助,将不胜感激。

最佳答案

我已经删除了我以前的答案,并想建议我在下面提供的解决方案

我做了一些搜索,找到了解决您问题的方法 - 在代码中,你在哪里使用 auth_basic指令,进行此类更改 :

satisfy    any;
allow 10.0.0.1/8; // give access for all internal request
deny all;
auth_basic "...."; // your auth_basic code goes here
auth_basic_user_file ...; // your auth_basic_user_file goes here

这个怎么运作? satisfy指令意味着 anyall必须通过下一个访问规则才能访问资源。您可以在此处找到更多详细信息: satisfy

这应该完全适合您的问题;)

关于authentication - 除了本地网络上的 Nginx 身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14505799/

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