mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-28 00:34:47 -04:00
Files
38e20ba3216d451643f71a524deb19ed5df596b5
21 lines
263 B
Caddyfile
21 lines
263 B
Caddyfile
{
|
|||
auto_https off
|
|||
}
|
|||
|
|||
:80 {
|
|||
@proxied path /api/* /docs /openapi.json
|
|||
|
|||
root * /app/dist
|
|||
encode gzip
|
|||
uri strip_suffix /
|
|||
|
|||
handle @proxied {
|
|||
reverse_proxy http://127.0.0.1:9000
|
|||
}
|
|||
|
|||
handle {
|
|||
try_files {path}.html {path} /
|
|||
file_server
|
|||
}
|
|||
|
|||
}
|