Skip to content

Commit 8c01d51

Browse files
committed
feat(config): make ACCOUNTS_USERINFO_HEADERS customisable (#713)
Allow enabling and disabling the `X-User-ID` and `X-User-Session` headers that were always set on HTTP responses. These are useful only for debug purposes, and they are not needed otherwise.
1 parent 1919358 commit 8c01d51

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

reana_server/config.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,9 @@ def _(x):
150150
#: and X-User-ID headers to HTTP response. You MUST ensure that NGINX (or other
151151
#: proxies) removes these headers again before sending the response to the
152152
#: client. Set to False, in case of doubt.
153-
ACCOUNTS_USERINFO_HEADERS = True
153+
ACCOUNTS_USERINFO_HEADERS = bool(
154+
strtobool(os.getenv("ACCOUNTS_USERINFO_HEADERS", "False"))
155+
)
154156
#: Disable password recovery by users.
155157
SECURITY_RECOVERABLE = False
156158
REANA_USER_EMAIL_CONFIRMATION = strtobool(

0 commit comments

Comments
 (0)