From 4e470eee4182335668a522c7c906ba0e43b9b46f Mon Sep 17 00:00:00 2001 From: Owen Date: Wed, 6 May 2026 16:51:40 -0700 Subject: [PATCH] Add missing env vars --- self-host/advanced/config-file.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/self-host/advanced/config-file.mdx b/self-host/advanced/config-file.mdx index 4c15a0e..5c9e4e2 100644 --- a/self-host/advanced/config-file.mdx +++ b/self-host/advanced/config-file.mdx @@ -657,6 +657,8 @@ This section contains the complete reference for all configuration options in `c SMTP username. + **Environment Variable**: `EMAIL_SMTP_USER` + **Example**: `no-reply@example.com` @@ -869,5 +871,9 @@ Some configuration values can be set using environment variables for enhanced se | Name | Variable | Config | |------|----------|--------| | Server Secret | `SERVER_SECRET` | `server.secret` | +| Email Username | `EMAIL_SMTP_USER` | `email.smtp_user` | | Email Password | `EMAIL_SMTP_PASS` | `email.smtp_pass` | | PostgreSQL Connection String | `POSTGRES_CONNECTION_STRING` | `postgres.connection_string` | +| PostgreSQL Replica Connection Strings | `POSTGRES_REPLICA_CONNECTION_STRINGS` | `postgres.replicas` (comma-separated list of connection strings) | +| PostgreSQL Logs Connection String | `POSTGRES_LOGS_CONNECTION_STRING` | `postgres_logs.connection_string` | +| Enable SQLite WAL Mode | `ENABLE_SQLITE_WAL_MODE` | *(SQLite only)* Set to `true` to enable [WAL mode](https://www.sqlite.org/wal.html) for improved SQLite concurrency | \ No newline at end of file