mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 10:20:18 -06:00
15 lines
333 B
PHP
15 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),
|
|
],
|
|
|
|
];
|