You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Potential Issue:
If a user sets an ENV variables such as TRUSTED_PROXIES by running the following command export TRUSTED_PROXIES= then the value of TRUSTED_PROXIES is not nil but ""
This can cause issues, due to the fact that we nil check some of our ENV variables to determine specific actions.
Solution:
Upon starting Conjur, set all blank ENV variables to nil.
The text was updated successfully, but these errors were encountered:
Potential Issue:
If a user sets an ENV variables such as
TRUSTED_PROXIES
by running the following commandexport TRUSTED_PROXIES=
then the value ofTRUSTED_PROXIES
is not nil but ""This can cause issues, due to the fact that we nil check some of our ENV variables to determine specific actions.
Solution:
Upon starting
Conjur
, set allblank
ENV variables to nil.The text was updated successfully, but these errors were encountered: