mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
should fix timezone bug, closes #63
This commit is contained in:
parent
cad5b8c78d
commit
e81545f832
@ -2,6 +2,7 @@ APP_ENV=production
|
||||
APP_DEBUG=false
|
||||
APP_KEY=SomeRandomString3232RandomString
|
||||
APP_THEME=default
|
||||
APP_TIMEZONE=UTC
|
||||
|
||||
DB_HOST=localhost
|
||||
DB_PORT=3306
|
||||
|
@ -30,7 +30,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'url' => ENV('APP_URL', 'http://localhost'),
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@ -43,7 +43,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'timezone' => ENV('APP_TIMEZONE', 'UTC'),
|
||||
'timezone' => env('APP_TIMEZONE', 'UTC'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user