Correct maxmind geoip-db GEOLITE2_ISP to GEOIP2_ISP

This commit is contained in:
wiz
2022-07-23 23:53:28 +02:00
parent ffe22399d5
commit ad9e989598
3 changed files with 5 additions and 5 deletions

View File

@@ -102,7 +102,7 @@ interface IConfig {
ENABLED: boolean;
GEOLITE2_CITY: string;
GEOLITE2_ASN: string;
GEOLITE2_ISP: string;
GEOIP2_ISP: string;
},
}
@@ -208,7 +208,7 @@ const defaults: IConfig = {
'ENABLED': false,
"GEOLITE2_CITY": "/usr/local/share/GeoIP/GeoLite2-City.mmdb",
"GEOLITE2_ASN": "/usr/local/share/GeoIP/GeoLite2-ASN.mmdb",
"GEOLITE2_ISP": "/usr/local/share/GeoIP/GeoIP2-ISP.mmdb"
"GEOIP2_ISP": "/usr/local/share/GeoIP/GeoIP2-ISP.mmdb"
},
};