shlink/config/autoload/url-shortener.local.php.dist

17 lines
308 B
Text

<?php
declare(strict_types=1);
$isSwoole = extension_loaded('openswoole');
return [
'url_shortener' => [
'domain' => [
'schema' => 'http',
'hostname' => sprintf('localhost:%s', $isSwoole ? '8080' : '8000'),
],
'auto_resolve_titles' => true,
],
];