Skip to content

Commit

Permalink
📝 [#200] Update docs for setup configuration changes
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Dec 6, 2024
1 parent d7c16aa commit d10af57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/installation/configuration/env_config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ Optional
* ``LOG_OUTGOING_REQUESTS_MAX_AGE``: The amount of time after which request logs should be deleted from the database. Defaults to: ``7``.
* ``SENTRY_DSN``: URL of the sentry project to send error reports to. Default empty, i.e. -> no monitoring set up. Highly recommended to configure this.
* ``EXTRA_VERIFY_CERTS``: a comma-separated list of paths to certificates to trust, If you're using self-signed certificates for the services that Open Notificaties communicates with, specify the path to those (root) certificates here, rather than disabling SSL certificate verification. Example: ``EXTRA_VERIFY_CERTS=/etc/ssl/root1.crt,/etc/ssl/root2.crt``. Defaults to: ``(empty string)``.
* ``OPENNOTIFICATIES_DOMAIN``: The domain for this Open Notificaties instance (``[host]:[port]`` or ``[host]``). Defaults to: ``(empty string)``.



Expand Down
6 changes: 5 additions & 1 deletion src/nrc/conf/includes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,8 @@
# Open Notificaties settings
#

OPENNOTIFICATIES_DOMAIN = config("OPENNOTIFICATIES_DOMAIN", "")
OPENNOTIFICATIES_DOMAIN = config(
"OPENNOTIFICATIES_DOMAIN",
"",
help_text="The domain for this Open Notificaties instance (``[host]:[port]`` or ``[host]``)",
)

0 comments on commit d10af57

Please sign in to comment.