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

15 lines
333 B
PHP
Raw Normal View History

<?php
2016-08-01 15:36:39 +03:00
use Shlinkio\Shlink\Core\Service\UrlShortener;
return [
'url_shortener' => [
'domain' => [
2016-08-01 15:36:39 +03:00
'schema' => env('SHORTENED_URL_SCHEMA', 'http'),
'hostname' => env('SHORTENED_URL_HOSTNAME'),
],
2016-08-01 15:36:39 +03:00
'shortcode_chars' => env('SHORTCODE_CHARS', UrlShortener::DEFAULT_CHARS),
],
];