2016-04-30 17:47:48 +02:00
|
|
|
<?php
|
2019-10-05 17:26:10 +02:00
|
|
|
|
2017-10-12 10:13:20 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-08-07 11:05:20 +02:00
|
|
|
use function Shlinkio\Shlink\Common\env;
|
|
|
|
|
2021-09-26 11:20:29 +02:00
|
|
|
use const Shlinkio\Shlink\DEFAULT_SHORT_CODES_LENGTH;
|
|
|
|
use const Shlinkio\Shlink\MIN_SHORT_CODES_LENGTH;
|
2021-08-07 11:05:20 +02:00
|
|
|
|
|
|
|
return (static function (): array {
|
2021-12-10 16:24:38 +01:00
|
|
|
$shortCodesLength = max(
|
|
|
|
(int) env('DEFAULT_SHORT_CODES_LENGTH', DEFAULT_SHORT_CODES_LENGTH),
|
|
|
|
MIN_SHORT_CODES_LENGTH,
|
|
|
|
);
|
2020-02-18 18:54:40 +01:00
|
|
|
|
2021-08-07 11:05:20 +02:00
|
|
|
return [
|
2016-04-30 17:47:48 +02:00
|
|
|
|
2021-08-07 11:05:20 +02:00
|
|
|
'url_shortener' => [
|
|
|
|
'domain' => [
|
2021-12-14 22:21:53 +01:00
|
|
|
'schema' => ((bool) env('IS_HTTPS_ENABLED', true)) ? 'https' : 'http',
|
|
|
|
'hostname' => env('DEFAULT_DOMAIN', ''),
|
2021-08-07 11:05:20 +02:00
|
|
|
],
|
|
|
|
'default_short_codes_length' => $shortCodesLength,
|
|
|
|
'auto_resolve_titles' => (bool) env('AUTO_RESOLVE_TITLES', false),
|
|
|
|
'append_extra_path' => (bool) env('REDIRECT_APPEND_EXTRA_PATH', false),
|
2016-05-01 11:21:54 +02:00
|
|
|
],
|
2021-08-07 11:05:20 +02:00
|
|
|
|
|
|
|
];
|
|
|
|
})();
|