AFFiNE/.github/deployment/Caddyfile-affine

29 lines
577 B
Caddyfile
Raw Normal View History

2022-08-04 12:02:19 +03:00
:3000 {
root /* ./dist
file_server {
precompressed br
}
encode {
zstd
gzip 9
}
@notStatic {
not path /*.css
not path /*.js
not path /*.png
not path /*.jpg
not path /*.svg
not path /*.ttf
not path /*.eot
not path /*.woff
not path /*.woff2
}
handle @notStatic {
try_files {path} /index.html
}
}