通过电子邮件发送的Auth密码重置链接是错误的

The link that I receive to the email to reset my password is not well formed:

should be:

http://localhost:8000/password/reset/sometoken

but instead I receive

http://localhost/password/reset/sometoken

the other routes of Auth work well, any idea? Thanks

You need to update APP_URL variable in .env file. It should contain the host where your application is available and will be used to generate any absolute URLs you generate.