The Wiki Configuration

``` { "port": 3999, "host": "0.0.0.0", "data": "/data", "cookieSecret": CHANGEME, "security_type": "oidc", "security_useHttps": true, "farm": true, "allowed": "*", "oidc_clientID": CHANGEME, "oidc_clientSecret": CHANGEME, "oidc_issuerBaseURL": CHANGEME, "oidc_issuerName": CHANGEME, "oidc_secret": CHANGEME } ```

* The `/data` directory is used as mapped in The Wiki Systemd Configuration. * Because we have farm mode enabled, we need to manually create a subdirectory inside `/data` for each domain we intend to serve. * Because we use `"*"` as the value for allowed, we can have arbitrary domains in farm. * You will need to generate your own cookiesecret. We generate ours with `openssl rand -base64 64` * If using the oidc security plugin, you will need to fill in the `oidc` information according to your provider.