更改静态路由的正确方法是什么,目录jester正在从?
提供静态文件我尝试了各种各样的排列:
routes:
get "/static":
setStaticDir(request,"./semantic/dist")
但不能让它发挥作用。
我收到404
或bad gateway
错误。
答案 0 :(得分:2)
这会使semantic/dist
中/
的所有文件都可用,例如semantic/dist/foo.html
http://localhost:5000/foo.html:
import jester, asyncdispatch, htmlgen
settings:
staticDir = "semantic/dist"
routes:
get "/":
resp h1("Hello World")
runForever()