From 95a99a99f6225e928a6768bb31a67dd796564bc0 Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Thu, 27 Jan 2022 15:13:26 -0800 Subject: [PATCH] Expose more db options to Postgres --- docs/docs/reference/configuration-file.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/reference/configuration-file.md b/docs/docs/reference/configuration-file.md index c4e311a01..6572a7a6a 100644 --- a/docs/docs/reference/configuration-file.md +++ b/docs/docs/reference/configuration-file.md @@ -101,8 +101,8 @@ Shown below is a complete listing of the configuration options available in | `default['firezone']['database']['port']` | Database port that Firezone will connect to. | `node['firezone']['postgresql']['port']` | | `default['firezone']['database']['pool']` | Database pool size Firezone will use. | `[10, Etc.nprocessors].max` | | `default['firezone']['database']['ssl']` | Whether to connect to the database over SSL. | `false` | -| `default['firezone']['database']['ssl_opts']` | Hash of options to send to the `:ssl_opts` option when connecting over SSL. See https://hexdocs.pm/ecto_sql/Ecto.Adapters.Postgres.html#module-connection-options. | `{}` | -| `default['firezone']['database']['parameters']` | Hash of parameters to send to the `:parameters` option when connecting to the database. See https://hexdocs.pm/ecto_sql/Ecto.Adapters.Postgres.html#module-connection-options. | `{}` | +| `default['firezone']['database']['ssl_opts']` | Hash of options to send to the `:ssl_opts` option when connecting over SSL. See [Ecto.Adapters.Postgres documentation](https://hexdocs.pm/ecto_sql/Ecto.Adapters.Postgres.html#module-connection-options). | `{}` | +| `default['firezone']['database']['parameters']` | Hash of parameters to send to the `:parameters` option when connecting to the database. See [Ecto.Adapters.Postgres documentation](https://hexdocs.pm/ecto_sql/Ecto.Adapters.Postgres.html#module-connection-options). | `{}` | | `default['firezone']['database']['extensions']` | Database extensions to enable. | `{ 'plpgsql' => true, 'pg_trgm' => true }` | | `default['firezone']['phoenix']['enabled']` | Enable or disable the Firezone web application. | `true` | | `default['firezone']['phoenix']['port']` | Firezone web application listen port. This will be the upstream port that nginx proxies. | `13000` |