mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 09:50:17 -06:00
16 lines
302 B
PHP
16 lines
302 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Shlinkio\Shlink\Core\Config\EnvVars;
|
|
|
|
return [
|
|
|
|
'geolite2' => [
|
|
'db_location' => __DIR__ . '/../../data/GeoLite2-City.mmdb',
|
|
'temp_dir' => __DIR__ . '/../../data',
|
|
'license_key' => EnvVars::GEOLITE_LICENSE_KEY->loadFromEnv(),
|
|
],
|
|
|
|
];
|