This repository has been archived on 2025-02-09. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
kyanite/Caddyfile
2023-02-04 18:42:08 -08:00

16 lines
No EOL
324 B
Caddyfile

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