diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-23 22:58:29 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-23 22:58:32 +0100 |
| commit | 115bb78ac9919a9a1fc046622b4545e9ba4513f5 (patch) | |
| tree | ebd9cbb8de7d23d84c86ddb6a7604b059b0bb945 | |
| parent | d1b5e58dd4b1036187deb2acad40e7d89b996e48 (diff) | |
Add more information for self-hosters.
| -rw-r--r-- | README.md | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -23,6 +23,29 @@ To use this plugin, you must set the `security_type` to `"oidc"`. out from the wiki. Providers like Pocket ID don't allow you to be redirected back if this is true. **Optional, defaults to `false`** +### Additional Considerations + +When running behind a reverse proxy such as `nginx`, it might be necessary to +increase the buffer sizes to properly handle the response. We use: + +``` +proxy_busy_buffers_size 512k; +proxy_buffers 4 512k; +proxy_buffer_size 256k; +``` + +Likewise, if running behind a reverse proxy, you might need to set up the +following configuration values in your `config.json` to get the right +callbacks: + +``` +{ +... +security_useHttps: true, +wiki_domain: <the_external_facing_domain> +} +``` + ## Development workflow This project has a `Makefile` that encapsulates some of the common development |