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