diff options
| -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 |