mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 09:50:17 -06:00
22 lines
460 B
Plaintext
22 lines
460 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use function Shlinkio\Shlink\Config\runningInRoadRunner;
|
|
|
|
return [
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => 'http',
|
|
'hostname' => sprintf('localhost:%s', match (true) {
|
|
runningInRoadRunner() => '8800',
|
|
default => '8000',
|
|
}),
|
|
],
|
|
// 'multi_segment_slugs_enabled' => true,
|
|
// 'trailing_slash_enabled' => true,
|
|
],
|
|
|
|
];
|