mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-07 22:53:10 -06:00
19 lines
357 B
Plaintext
19 lines
357 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,
|
|
// 'multi_segment_slugs_enabled' => true,
|
|
],
|
|
|
|
];
|