mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 04:03:12 +08: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'),
|
|
],
|
|
|
|
];
|