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

18 lines
304 B
PHP
Raw Normal View History

<?php
2019-10-05 10:26:10 -05:00
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
2017-10-21 04:28:44 -05:00
use function Shlinkio\Shlink\Common\env;
2016-08-01 07:36:39 -05:00
return [
'url_shortener' => [
'domain' => [
2017-10-21 04:28:44 -05:00
'schema' => env('SHORTENED_URL_SCHEMA', 'http'),
'hostname' => env('SHORTENED_URL_HOSTNAME'),
],
'validate_url' => true,
],
];