I have a laravel REST API that uses tymondesigns/jwt-auth for authentication and want to scale application from single server to multi server configuration with a load balancer in front.
The flow uses RefreshToken middleware and essentially a token is invalidated after every request and a new one is returned along with the response. (https://github.com/tymondesigns/jwt-auth/wiki/Authentication)
How is jwt going to manage invalidated tokens in a multi server configuration where the token is invalidated using one server and a new request using the invalidated token is hit on another server?