More work on marketing pages

This commit is contained in:
Matthew Holt 2023-12-05 20:55:44 -07:00 committed by Francis Lavoie
parent 12564261f4
commit f44e6af8ad
No known key found for this signature in database
GPG key ID: 0F66EE1687682239
16 changed files with 479 additions and 145 deletions

View file

@ -44,19 +44,19 @@ file_server /downloads/* {
# Compress everything else that would benefit
encode zstd gzip
# Get files from a database
# Static site using database as file system
file_server /database/* {
fs sqlite data.sql
}
# Get files from within the Caddy binary
# Static site embedded within the Caddy binary
file_server /embedded/* {
fs embedded
}
# (Range/Etag/etc. all work without extra config)
# Serve static site with directory listings as needed
# Serve static site with directory listings
file_server browse
```