我正在尝试在krakenjs中找到以下代码中的等效config.json文件条目。
app.use("/app/static", express.static(path.join(__dirname, 'public'), {maxage: '2h'}));
我尝试过类似下面的内容。但是,它没有选择已安装的路径
"static": {
"enabled": true,
"priority": 40,
"name": "server-static",
"module": {
"arguments": [
"path:./public",
{"maxAge" : "3h"},
"mountpath:/app/static"
]
}
}
我无法使用以下网址访问它:https://app.com/app/static/style.css。但是,可以通过https://app.com/app/style.css
访问它注意:/ app是我的requestURI。
答案 0 :(得分:0)
"static": {
"enabled": true,
"priority": 40,
"name": "server-static",
"module": {
"arguments": [
"path:./public",
{"maxAge" : "3h"}
]
},
"route": "/static"
},