mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 09:03:07 +03:00
15 lines
382 B
PHP
15 lines
382 B
PHP
<?php
|
|
use Shlinkio\Shlink\Common;
|
|
use Shlinkio\Shlink\Core\Service\UrlShortener;
|
|
|
|
return [
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => Common\env('SHORTENED_URL_SCHEMA', 'http'),
|
|
'hostname' => Common\env('SHORTENED_URL_HOSTNAME'),
|
|
],
|
|
'shortcode_chars' => Common\env('SHORTCODE_CHARS', UrlShortener::DEFAULT_CHARS),
|
|
],
|
|
|
|
];
|