diff --git a/.env.example b/.env.example index ba98b1c75..fa7e20965 100644 --- a/.env.example +++ b/.env.example @@ -1,12 +1,11 @@ APP_ENV=production APP_DEBUG=false APP_KEY=SomeRandomString3232RandomString -APP_THEME=default +APP_THEME=pterodactyl APP_TIMEZONE=UTC APP_CLEAR_TASKLOG=720 APP_DELETE_MINUTES=10 -CONSOLE_PUSH_FREQ=250 -CONSOLE_PUSH_COUNT=10 +APP_URL=http://yoursite.com/ DB_HOST=localhost DB_PORT=3306 diff --git a/app/Console/Commands/UpdateEnvironment.php b/app/Console/Commands/UpdateEnvironment.php index df1631d7d..0f1b01f10 100644 --- a/app/Console/Commands/UpdateEnvironment.php +++ b/app/Console/Commands/UpdateEnvironment.php @@ -122,7 +122,7 @@ class UpdateEnvironment extends Command } if (is_null($this->option('url'))) { - $variables['APP_URL'] = $this->ask('Panel URL', env('APP_URL')); + $variables['APP_URL'] = $this->ask('Panel URL (include http(s)://)', env('APP_URL')); } else { $variables['APP_URL'] = $this->option('url'); }