jonnybarnes.uk/config/url.php

11 lines
238 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
/*
* Here we set the long and short URLs our app shall use
* You can override these settings in the .env file
*/
return [
'longurl' => env('APP_LONGURL', 'jonnybarnes.uk'),
'shorturl' => env('APP_SHORTURL', 'jmb.so')
];