2016-04-30 10:47:48 -05:00
|
|
|
<?php
|
2017-10-12 03:13:20 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-07-16 02:28:40 -05:00
|
|
|
use Shlinkio\Shlink\Common;
|
2016-08-01 07:36:39 -05:00
|
|
|
use Shlinkio\Shlink\Core\Service\UrlShortener;
|
|
|
|
|
2016-04-30 10:47:48 -05:00
|
|
|
return [
|
|
|
|
|
2016-05-01 04:21:54 -05:00
|
|
|
'url_shortener' => [
|
|
|
|
'domain' => [
|
2017-07-16 02:28:40 -05:00
|
|
|
'schema' => Common\env('SHORTENED_URL_SCHEMA', 'http'),
|
|
|
|
'hostname' => Common\env('SHORTENED_URL_HOSTNAME'),
|
2016-05-01 04:21:54 -05:00
|
|
|
],
|
2017-07-16 02:28:40 -05:00
|
|
|
'shortcode_chars' => Common\env('SHORTCODE_CHARS', UrlShortener::DEFAULT_CHARS),
|
2016-04-30 10:47:48 -05:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|