Nginx - 密码保护整个网站,但保持一个文件夹打开

发布于 2024-10-28 13:00:08 字数 167 浏览 2 评论 0原文

我们在为开发(测试)保留的服务器上使用 Nginx,并且我们希望防止公司外部的任何人访问正在开发的站点。然而,其中一个网站使用在线支付,因此任何人都需要访问一个文件夹,用于信用卡公司的回调。

有什么方法可以保护整个网站,但只留下一个文件夹和所有文件里面开吗?

问候,

韦尔

We're using Nginx on the server reserved for development (testing) and we want to prevent anyone outside the company from gaining access to the sites under development. However one of the sites uses online payment and for that a folder need to be accessible by anyone, used for the callback from the credit card company..

Is there any way we can protect an entire website but leave just one folder and all the files inside open ?

Regards,

Wael

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

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

发布评论

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

评论(1

弄潮 2024-11-04 13:00:08
server {
        auth_basic "go away";
        location /a {
                auth_basic off;
        }
}
server {
        auth_basic "go away";
        location /a {
                auth_basic off;
        }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文