caddy-website/Caddyfile
Matthew Holt c8ef91c47c
Update Caddyfile
Most people won't have the caddy-hitcounter plugin installed.
2023-12-11 10:15:21 -07:00

25 lines
509 B
Caddyfile

localhost
root * src
file_server
templates {
extensions {
# Uncomment this if you have the caddy-hitcounter plugin (https://github.com/mholt/caddy-hitcounter):
# hitCounter {
# style bright_green
# pad_digits 6
# }
}
}
encode zstd gzip
try_files {path}.html {path}
redir /docs/json /docs/json/
redir /docs/modules /docs/modules/
rewrite /docs/json/* /docs/json/index.html
rewrite /docs/modules/* /docs/modules/index.html
rewrite /docs/* /docs/index.html
reverse_proxy /api/* localhost:4444