Move location of GeoIP data to config file

This commit is contained in:
Edward Betts 2021-06-25 11:10:25 +02:00
parent 8f3f40e569
commit 81f8f7d426
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ def get_markers(all_items):
def get_user_location():
gi = GeoIP.open("/home/edward/lib/data/GeoIPCity.dat", GeoIP.GEOIP_STANDARD)
gi = GeoIP.open(app.config["GEOIP_DATA"], GeoIP.GEOIP_STANDARD)
remote_ip = request.remote_addr
gir = gi.record_by_addr(remote_ip)