shlink/config/autoload/geolite2.global.php
2022-01-05 17:46:38 +01:00

15 lines
285 B
PHP

<?php
declare(strict_types=1);
use function Shlinkio\Shlink\Config\env;
return [
'geolite2' => [
'db_location' => __DIR__ . '/../../data/GeoLite2-City.mmdb',
'temp_dir' => __DIR__ . '/../../data',
'license_key' => env('GEOLITE_LICENSE_KEY'),
],
];