mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
17 lines
304 B
PHP
17 lines
304 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use function Shlinkio\Shlink\Common\env;
|
|
|
|
return [
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => env('SHORTENED_URL_SCHEMA', 'http'),
|
|
'hostname' => env('SHORTENED_URL_HOSTNAME'),
|
|
],
|
|
'validate_url' => true,
|
|
],
|
|
|
|
];
|