shlink/config/autoload/geolite2.global.php

16 lines
285 B
PHP
Raw Normal View History

<?php
2019-10-05 10:26:10 -05:00
declare(strict_types=1);
use function Shlinkio\Shlink\Common\env;
return [
'geolite2' => [
'db_location' => __DIR__ . '/../../data/GeoLite2-City.mmdb',
'temp_dir' => __DIR__ . '/../../data',
2021-12-14 15:21:53 -06:00
'license_key' => env('GEOLITE_LICENSE_KEY'),
],
];