mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-05 13:45:00 -06:00
16 lines
382 B
PHP
16 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),
|
|
],
|
|
|
|
];
|