mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
Add APP_URL env variable ... like the latest versions of laravel
This commit is contained in:
parent
90b87d6acf
commit
e9ed238630
2 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
APP_ENV=production
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
|
||||
|
||||
# Database connection name, which corresponds to the database driver.
|
||||
|
|
|
@ -29,7 +29,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'url' => 'http://localhost',
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue