mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 00:38:46 +03:00
10 lines
170 B
PHP
10 lines
170 B
PHP
|
<?php
|
||
|
return [
|
||
|
|
||
|
'url-shortener' => [
|
||
|
'schema' => getenv('SHORTENED_URL_SCHEMA') ?: 'http',
|
||
|
'hostname' => getenv('SHORTENED_URL_HOSTNAME'),
|
||
|
],
|
||
|
|
||
|
];
|