mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
24 lines
669 B
PHP
24 lines
669 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use const Shlinkio\Shlink\Core\DEFAULT_REDIRECT_CACHE_LIFETIME;
|
|
use const Shlinkio\Shlink\Core\DEFAULT_REDIRECT_STATUS_CODE;
|
|
use const Shlinkio\Shlink\Core\DEFAULT_SHORT_CODES_LENGTH;
|
|
|
|
return [
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => 'https',
|
|
'hostname' => '',
|
|
],
|
|
'validate_url' => false,
|
|
'anonymize_remote_addr' => true,
|
|
'visits_webhooks' => [],
|
|
'default_short_codes_length' => DEFAULT_SHORT_CODES_LENGTH,
|
|
'redirect_status_code' => DEFAULT_REDIRECT_STATUS_CODE,
|
|
'redirect_cache_lifetime' => DEFAULT_REDIRECT_CACHE_LIFETIME,
|
|
],
|
|
|
|
];
|