mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 05:38:06 +03:00
12 lines
267 B
PHP
12 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'),
|
|
],
|
|
|
|
];
|