mirror of
https://github.com/internetee/epp_proxy.git
synced 2025-08-21 14:49:33 +02:00
if require_client_certs does not exist, require client certs by default
This commit is contained in:
parent
9334dfc55c
commit
c6a54750d7
1 changed files with 2 additions and 1 deletions
|
@ -172,7 +172,8 @@ log_opened_connection(Ip) ->
|
|||
require_client_certs() ->
|
||||
case application:get_env(epp_proxy, require_client_certs) of
|
||||
{ok, false} -> false;
|
||||
{ok, true} -> true
|
||||
{ok, true} -> true;
|
||||
_ -> true
|
||||
end.
|
||||
|
||||
%% Extract state info from socket. Fail if you must.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue