shlink/config/autoload/url-shortener.global.php
2016-05-01 11:21:54 +02:00

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'),
],
];