mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 00:38:46 +03:00
17 lines
408 B
PHP
17 lines
408 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
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),
|
|
],
|
|
|
|
];
|