mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 17:06:41 -06:00
16 lines
351 B
PHP
16 lines
351 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use function Shlinkio\Shlink\Common\env;
|
|
|
|
return [
|
|
|
|
'geolite2' => [
|
|
'db_location' => __DIR__ . '/../../data/GeoLite2-City.mmdb',
|
|
'temp_dir' => __DIR__ . '/../../data',
|
|
'license_key' => env('GEOLITE_LICENSE_KEY', 'G4Lm0C60yJsnkdPi'), // Deprecated. Remove hardcoded license on v3
|
|
],
|
|
|
|
];
|