caddy-website/new/Caddyfile
2023-12-08 18:49:07 -05:00

23 lines
285 B
Caddyfile

{
debug
}
localhost {
file_server
templates
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
}