mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-23 07:33:58 -06:00
17 lines
240 B
PHP
17 lines
240 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => 'https',
|
|
'hostname' => '',
|
|
],
|
|
'validate_url' => true,
|
|
'visits_webhooks' => [],
|
|
],
|
|
|
|
];
|