mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 00:04:23 -04:00
* add features to readme
* Copy markdown reference
* prop as whole recipe
* parameter as url instead of query
* add card styling to editor
* move images to /recipes/{slug}/images
* add image to breaking changes
* fix delete and import errors
* fix debug/about response
* logger updates
* dashboard ui
* add server side events
* unorganized routes
* default slot
* add backup viewer to dashboard
* format
* add dialog to backup imports
* initial event support
* delete assets when removed
Co-authored-by: hay-kot <hay-kot@pm.me>
27 lines
365 B
Caddyfile
27 lines
365 B
Caddyfile
{
|
|
auto_https off
|
|
admin off
|
|
}
|
|
|
|
:80 {
|
|
@proxied path /api/* /docs /openapi.json
|
|
|
|
root * /app/dist
|
|
encode gzip
|
|
uri strip_suffix /
|
|
|
|
handle_path /api/recipes/media/* {
|
|
root * /app/data/recipes/
|
|
file_server
|
|
}
|
|
|
|
handle @proxied {
|
|
reverse_proxy http://127.0.0.1:9000
|
|
}
|
|
|
|
handle {
|
|
try_files {path}.html {path} /
|
|
file_server
|
|
}
|
|
|
|
} |