caddy-website/new/Caddyfile

24 lines
285 B
Text
Raw Normal View History

2023-05-02 17:29:08 -06:00
{
debug
}
2023-05-02 17:29:08 -06:00
localhost {
file_server
templates
2023-05-02 17:29:08 -06:00
try_files {path}.html {path}
handle_path /temporary-markdown-proxy/* {
reverse_proxy 127.0.0.1:10434
}
}
:10434 {
log
bind 127.0.0.1
root ../src/docs/markdown
uri strip_prefix /docs
try_files {path}.md {path}
file_server
}