mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 10:20:18 -06:00
18 lines
308 B
Plaintext
18 lines
308 B
Plaintext
<?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,
|
|
],
|
|
|
|
];
|