From da0a6357de58029f2a072228a12cad341ae01711 Mon Sep 17 00:00:00 2001 From: Kleissner Date: Tue, 14 Dec 2021 14:24:21 +0100 Subject: [PATCH] Add config entry for GeoIPDatabase --- Config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Config.go b/Config.go index e548dbe..fdc9266 100644 --- a/Config.go +++ b/Config.go @@ -17,7 +17,7 @@ import ( ) // Version is the current core library version -const Version = "Alpha 5/13.12.2021" +const Version = "Alpha 5/14.12.2021" var config struct { // Locations of important files and folders @@ -26,6 +26,7 @@ var config struct { BlockchainGlobal string `yaml:"BlockchainGlobal"` // Blockchain global caches blockchain data from global users. Empty to disable. WarehouseMain string `yaml:"WarehouseMain"` // Warehouse main stores the actual data of files shared by the end-user. SearchIndex string `yaml:"SearchIndex"` // Local search index of blockchain records. Empty to disable. + GeoIPDatabase string `yaml:"GeoIPDatabase"` // GeoLite2 City database to provide GeoIP information. // Listen settings Listen []string `yaml:"Listen"` // IP:Port combinations