Fix file paths for country and ASN databases

This commit is contained in:
Théophile Diot 2024-03-10 16:49:53 +00:00
parent a4aecabc33
commit 0204fe49de
No known key found for this signature in database
GPG key ID: 248FEA4BAE400D06

View file

@ -1,6 +1,6 @@
local geoip = require "geoip.mmdb"
return {
country_db = geoip.load_database "/var/cache/bunkerweb/country.mmdb",
asn_db = geoip.load_database "/var/cache/bunkerweb/asn.mmdb",
country_db = geoip.load_database "/var/cache/bunkerweb/jobs/country.mmdb",
asn_db = geoip.load_database "/var/cache/bunkerweb/jobs/asn.mmdb",
}