Django 和 IP 限制

发布于 2024-12-11 21:17:41 字数 103 浏览 0 评论 0原文

我想将我的网站限制在美国以及几个美国以外的 IP 地址(开发人员、QA 等)。除此之外,我想显示模板,上面写着“即将来到您的国家”。

我很好奇是否有任何简单的或已经开发的插件。

I want to limit my site to USA plus several outside-US IP adrresses (developers, QA etc..). And beside these, I want to display template saying "Coming soon to your country".

I'm curious if there's any easy or already developed plugin for this.

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

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

发布评论

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

评论(2

同展鸳鸯锦 2024-12-18 21:17:42

在 Django 中,最简单的方法是使用 GeoIP 和自定义中间件来检查每个请求。

In Django the simplest way would be to use GeoIP and custom middleware to check every request.

三寸金莲 2024-12-18 21:17:42

在 Django 级别,您可以使用 GeoDjango 中的 GeoIP 应用程序 (感谢 ArturM)。

但出于性能目的,最好在网络服务器级别上执行此操作。如果您使用 ngingx,请尝试 HttpGeoIPModule。对于 apache - libapache2-mod-geoip

On the Django level you can use GeoIP application from GeoDjango (thanks to ArturM).

But it's better do this on webserver level for performance purpose. If you are using ngingx, try HttpGeoIPModule. For apache - libapache2-mod-geoip

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