Reputation: 64873
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.
Upvotes: 1
Views: 138
Reputation: 8345
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
Upvotes: 0