Add more descriptive message for 404s.
This commit is contained in:
parent
774d0b446f
commit
80a3ba4621
@ -180,7 +180,9 @@ proc start*(cfg: StrawBossConfig): void =
|
||||
try:
|
||||
let authToken = makeAuthToken(cfg, uname, pwd)
|
||||
resp($(%authToken), JSON)
|
||||
except: jsonResp(Http401, getCurrentExceptionMsg())
|
||||
except:
|
||||
jsonResp(Http401, getCurrentExceptionMsg())
|
||||
if ctx.cfg.debug: echo getStackTrace()
|
||||
|
||||
get "/verify-auth":
|
||||
checkAuth()
|
||||
@ -445,7 +447,7 @@ proc start*(cfg: StrawBossConfig): void =
|
||||
|
||||
|
||||
get re".*":
|
||||
jsonResp(Http404)
|
||||
jsonResp(Http404, "URL [" & request.path & "] is not present on this server.")
|
||||
|
||||
post re".*":
|
||||
jsonResp(Http404)
|
||||
|
Loading…
x
Reference in New Issue
Block a user