gawa/docker/caddy/Caddyfile

19 lines
294 B
Caddyfile
Raw Permalink Normal View History

2023-10-10 11:35:07 +02:00
http://localhost, http://192.168.178.65 {
2023-09-26 22:10:12 +02:00
handle_path /static/* {
root * /srv/static
file_server {
hide .git
precompressed zstd br gzip
}
2023-09-25 23:34:26 +02:00
}
2023-09-26 22:10:12 +02:00
handle_path /media/* {
root * /srv/media
file_server {
hide .git
precompressed zstd br gzip
}
2023-09-25 23:34:26 +02:00
}
reverse_proxy http://main
}