This repository has been archived on 2025-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
kyanite/Caddyfile
2023-02-03 21:46:30 -08:00

16 lines
No EOL
319 B
Caddyfile

*:80 {
route /favicon.ico {
file_server {
root ./static
}
}
route /static/* {
uri strip_prefix /static
file_server {
root ./static
}
}
reverse_proxy 127.0.0.1:3621
}