shlink/config/autoload/url-shortener.global.php

18 lines
408 B
PHP
Raw Normal View History

<?php
2017-10-12 10:13:20 +02:00
declare(strict_types=1);
2017-07-16 09:28:40 +02:00
use Shlinkio\Shlink\Common;
2016-08-01 14:36:39 +02:00
use Shlinkio\Shlink\Core\Service\UrlShortener;
return [
'url_shortener' => [
'domain' => [
2017-07-16 09:28:40 +02:00
'schema' => Common\env('SHORTENED_URL_SCHEMA', 'http'),
'hostname' => Common\env('SHORTENED_URL_HOSTNAME'),
],
2017-07-16 09:28:40 +02:00
'shortcode_chars' => Common\env('SHORTCODE_CHARS', UrlShortener::DEFAULT_CHARS),
],
];