Skip to content
Snippets Groups Projects
Verified Commit fc04d3f8 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Make database ssl mode configurable

parent 513b584c
No related branches found
No related tags found
1 merge request!833Resolve "Make database ssl mode configurable"
Pipeline #46105 passed with warnings
......@@ -9,6 +9,11 @@ and this project adheres to `Semantic Versioning`_.
Unreleased
----------
Added
~~~~~
* Allow configuration of database options
`2.3.1`_ – 2021-12-17
---------------------
......
......@@ -218,6 +218,7 @@ DATABASES = {
"HOST": _settings.get("database.host", "127.0.0.1"),
"PORT": _settings.get("database.port", "5432"),
"CONN_MAX_AGE": _settings.get("database.conn_max_age", None),
"OPTIONS": _settings.get("database.options", {}),
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment