2018-11-11 12:40:40 +01:00
|
|
|
<?php
|
2019-10-05 17:26:10 +02:00
|
|
|
|
2018-11-11 12:40:40 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2022-01-04 17:50:41 +01:00
|
|
|
use function Shlinkio\Shlink\Config\env;
|
2021-08-07 11:05:20 +02:00
|
|
|
|
2018-11-11 12:40:40 +01:00
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
'geolite2' => [
|
|
|
|
|
'db_location' => __DIR__ . '/../../data/GeoLite2-City.mmdb',
|
2020-11-21 12:36:30 +01:00
|
|
|
'temp_dir' => __DIR__ . '/../../data',
|
2021-12-14 22:21:53 +01:00
|
|
|
'license_key' => env('GEOLITE_LICENSE_KEY'),
|
2018-11-11 12:40:40 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
];
|