mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 10:20:18 -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'),
|
|
],
|
|
|
|
];
|