Skip to content

v4.0.17

Choose a tag to compare

@daycry daycry released this 12 Apr 17:41
· 174 commits to master since this release

Full Changelog: v4.0.16...v4.0.17

  • Change RestServer config file
    ** Add **
/*
    |--------------------------------------------------------------------------
    | Enable block Invalid Attempts
    |--------------------------------------------------------------------------
    |
    | IP blocking on consecutive failed attempts
    |
    */
    public $restEnableInvalidAttempts = true;
    public $restInvalidAttemptsTable = 'restserver_attempts';
    public $restMaxAttempts = 3;
    public $restTimeBlocked = 3600;

And run migrate command.

php spark migrate --all