shlink/config/autoload/geolite2.global.php

16 lines
302 B
PHP
Raw Normal View History

<?php
2019-10-05 10:26:10 -05:00
declare(strict_types=1);
use Shlinkio\Shlink\Core\Config\EnvVars;
return [
'geolite2' => [
'db_location' => __DIR__ . '/../../data/GeoLite2-City.mmdb',
'temp_dir' => __DIR__ . '/../../data',
2022-04-23 05:44:17 -05:00
'license_key' => EnvVars::GEOLITE_LICENSE_KEY->loadFromEnv(),
],
];