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