v20.51.0
·
135 commits
to master
since this release
Dynamic 404 page
The 404 page is no longer a static error page that severs the connection, but now lives as a default route for App.any("/*"). This means two things:
- You can remove it by calling
App.any("/*", nullptr)or attach your own page to that route. - It won't kill the connection as if a true protocol error, but will use proper keep alive instead.