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 [
|
2023-06-09 18:31:53 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Application Long URL
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The long URL for the application
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'longurl' => env('APP_LONGURL', 'longurl.local'),
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Application Short URL
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The short URL for the application
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'shorturl' => env('APP_SHORTURL', 'shorturl.local'),
|
|
|
|
|
2016-07-19 22:06:09 +01:00
|
|
|
];
|