NGINX:在 .php 文件上返回 403

发布于 2024-12-05 08:01:28 字数 239 浏览 2 评论 0原文

我正在尝试从 WordPress 安装中提供静态文件,并且使用放置在 NGINX 文件夹中的符号链接指向 wp-content/uploads 文件夹。

每个文件都被正确提供,但不幸的是,有些插件在此文件夹中包含一些 .php 文件,因此 NGINX 将它们作为静态文件提供,从而导致潜在的安全风险。

有什么方法可以指示 NGINX 在尝试访问 .php 文件时返回 Forbidden 403 错误吗?

提前致谢。

I'm trying to serve the static files from a Wordpress installation and I'm using a symbolic link placed in the NGINX folder pointing to the wp-content/uploads folder.

Every file is being served correctly, but unfortunately there are some plugins that include some of their .php files inside this folder, so NGINX serve them as static files, leading to potential security risks.

Is there any way to instruct NGINX to return a Forbidden 403 error when trying to access .php files?

Thanks in advance.

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

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

发布评论

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

评论(1

三月梨花 2024-12-12 08:01:28

排除位置块下的扩展名。

您可以使用子位置E.G.

location /wp-content/uploads {
    location ~ \.(php|any|other|ext)$ {
        return 403;
    }

    ....

}

You can exclude an extension under a location block using a sub location

E.G.

location /wp-content/uploads {
    location ~ \.(php|any|other|ext)$ {
        return 403;
    }

    ....

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