From 6834e42a48f065a3845b2c6ae918b7f179666fe8 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Wed, 18 Sep 2024 20:05:11 +0000 Subject: [PATCH] update README with new values.yaml section explanation --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 2050300..01a9e61 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,27 @@ controllers: type: daemonset ``` +## Modifying the `config.ini` + +Trilium also has a `config.ini` that allows you to [modify some values](https://github.com/TriliumNext/Notes/blob/7ca4cddc5868f4a80b8804ad93a35bf4bc8cc812/config-sample.ini). The values you set within them are mostly self-explanatory, but if you need to change any of the values, modify the following section within the `values.yaml` to the value you want them to be. + +```yaml +configini: + general: + instanceName: "" + # Disable authentication to Trilium? (if you're running it on a private network, or have authentication handled by another component) + noAuthentication: false + # Disable backups of the database? + noBackup: false + network: + host: "0.0.0.0" + port: 8080 + https: false + certPath: "" + keyPath: "" + trustedReverseProxy: true +``` + ## Development To use Helm in order to create the individual Kubernetes manifests needed to deploy it "by hand", you can use the following commands: