mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-28 09:51:40 -06:00
13 lines
267 B
PHP
13 lines
267 B
PHP
<?php
|
|
return [
|
|
|
|
'url_shortener' => [
|
|
'domain' => [
|
|
'schema' => getenv('SHORTENED_URL_SCHEMA') ?: 'http',
|
|
'hostname' => getenv('SHORTENED_URL_HOSTNAME'),
|
|
],
|
|
'shortcode_chars' => getenv('SHORTCODE_CHARS'),
|
|
],
|
|
|
|
];
|