我试图让 Caddy 服务器显示一个动态的文件(分配给一个变量)。我发现官方文档有点不透明,搜索互联网也没有返回太多信息。
我的示例Caddyfile
配置:
example.com {
route / {
# own plugin that adds custom headers to the request
my_plugin do_something
map {header.something} {my_file} {
x "x.html"
y "y.html"
default "404.html"
}
file_server {
browse {my_file}
}
}
}
因此,如果请求包含值为“y”的“某物”,则想法是 Caddy 显示“y.html”模板。你得到图片。
然而,Caddy 会抱怨:
http.log.error parsing browse template: parsing browse template file: open {my_file}: no such file or directory
看起来它在字面上需要“{my_file}”(!)。
如何在 Caddy 中完成这项工作?
注意其他示例,例如redir {my_file}
工作和重定向到“example.com/y.html”。
还是有更好的方法来显示“来自变量”的模板?
templates {my_file}
不起作用。