mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-26 10:51:07 -06:00
18 lines
304 B
Plaintext
18 lines
304 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
$isSwoole = extension_loaded('swoole');
|
|
|
|
return [
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => 'http',
|
|
'hostname' => sprintf('localhost:%s', $isSwoole ? '8080' : '8000'),
|
|
],
|
|
'auto_resolve_titles' => true,
|
|
],
|
|
|
|
];
|