forked from Deuxfleurs/garage
Merge pull request 'reverse-proxy.md: Added caching section for Caddy.' (#614) from jpds/garage:caddy-cache into main
Reviewed-on: Deuxfleurs/garage#614
This commit is contained in:
commit
bd50333ade
1 changed files with 41 additions and 0 deletions
|
@ -378,6 +378,47 @@ admin.garage.tld {
|
||||||
But at the same time, the `reverse_proxy` is very flexible.
|
But at the same time, the `reverse_proxy` is very flexible.
|
||||||
For a production deployment, you should [read its documentation](https://caddyserver.com/docs/caddyfile/directives/reverse_proxy) as it supports features like DNS discovery of upstreams, load balancing with checks, streaming parameters, etc.
|
For a production deployment, you should [read its documentation](https://caddyserver.com/docs/caddyfile/directives/reverse_proxy) as it supports features like DNS discovery of upstreams, load balancing with checks, streaming parameters, etc.
|
||||||
|
|
||||||
|
### Caching
|
||||||
|
|
||||||
|
Caddy can compiled with a
|
||||||
|
[cache plugin](https://github.com/caddyserver/cache-handler) which can be used
|
||||||
|
to provide a hot-cache at the webserver-level for static websites hosted by
|
||||||
|
Garage.
|
||||||
|
|
||||||
|
This can be configured as follows:
|
||||||
|
|
||||||
|
```caddy
|
||||||
|
# Caddy global configuration section
|
||||||
|
{
|
||||||
|
# Bare minimum configuration to enable cache.
|
||||||
|
order cache before rewrite
|
||||||
|
|
||||||
|
cache
|
||||||
|
|
||||||
|
#cache
|
||||||
|
# allowed_http_verbs GET
|
||||||
|
# default_cache_control public
|
||||||
|
# ttl 8h
|
||||||
|
#}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Site specific section
|
||||||
|
https:// {
|
||||||
|
cache
|
||||||
|
|
||||||
|
#cache {
|
||||||
|
# timeout {
|
||||||
|
# backend 30s
|
||||||
|
# }
|
||||||
|
#}
|
||||||
|
|
||||||
|
reverse_proxy ...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Caching is a complicated subject, and the reader is encouraged to study the
|
||||||
|
available options provided by the plugin.
|
||||||
|
|
||||||
### On-demand TLS
|
### On-demand TLS
|
||||||
|
|
||||||
Caddy supports a technique called
|
Caddy supports a technique called
|
||||||
|
|
Loading…
Reference in a new issue