Add documentation for cache buster and hcaptcha

This commit is contained in:
Renaud Chaput 2024-01-08 22:15:30 +01:00
parent 4eb8473e62
commit 4d1de2cc80
No known key found for this signature in database
GPG Key ID: BCFC859D49B46990
1 changed files with 39 additions and 12 deletions

View File

@ -588,6 +588,34 @@ During batch delete operations, S3 providers may perodically fail or timeout whi
#### `SWIFT_CACHE_TTL`
### HTTP Cache Buster
If configured, the Cache Buster feature will send a request to invalidate the cache for media files when they are deleted or made unavailable from your origin. This allows you to ensure that your caching layer / CDN is purged from any content that is removed from Mastodon.
{{< hint style="info" >}}
The way to achieve this is very dependent of your proxy/CDN provider and will require configuration. If you are using nginx for HTTP caching, you will want to look at the `proxy_cache_purge` configuration directive.
{{</ hint >}}
#### `CACHE_BUSTER_ENABLED`
If set to `true`, then Mastodon will send a cache-busting request to the media URL when deleting the file so the file can be purged from the cache.
Defaults to `false`
#### `CACHE_BUSTER_HTTP_METHOD`
Defaults to `GET`
#### `CACHE_BUSTER_SECRET_HEADER`
Name of the header containing the secret defined in `CACHE_BUSTER_SECRET`.
Defaults to an empty value, meaning no header will be added
#### `CACHE_BUSTER_SECRET`
Value of the `CACHE_BUSTER_SECRET_HEADER` header configured above.
## External authentication {#external-authentication}
### OmniAuth
@ -793,12 +821,6 @@ This variable only has any effect when running `rake db:migrate` and it is extre
#### `LIBRE_TRANSLATE_API_KEY`
#### `CACHE_BUSTER_ENABLED`
#### `CACHE_BUSTER_SECRET_HEADER`
#### `CACHE_BUSTER_SECRET`
#### `GITHUB_REPOSITORY`
Defaults to `mastodon/mastodon`
@ -809,6 +831,12 @@ Defaults to `https://github.com/$GITHUB_REPOSITORY`
#### `FFMPEG_BINARY`
#### `HCAPTCHA_SITE_KEY`
Set this to your hCaptcha site key to enable captchas on the account confirmation page using hCaptcha.
Defaults to empty value (not enabled)
#### `LOCAL_HTTPS`
#### `PATH`
@ -846,4 +874,3 @@ Defaults to `512`.
#### `GITHUB_API_TOKEN`
Used in a rake task for generating AUTHORS.md from GitHub commit history.