Set ssl_verify to 0 by default.
This commit is contained in:
parent
9579f5159d
commit
6290f526f9
|
@ -770,3 +770,6 @@ netflowserver 0
|
|||
# Number of threads for the Pandora FMS Netflow Server (PANDORA FMS ENTERPRISE ONLY).
|
||||
netflowserver_threads 1
|
||||
|
||||
# Enable (1) or disable (0) the verification of SSL certificates (set to 0 when using self-signed certificates).
|
||||
ssl_verify 0
|
||||
|
||||
|
|
|
@ -579,7 +579,7 @@ sub pandora_load_config {
|
|||
$pa_config->{"repl_dbuser"} = undef; # 7.0.770
|
||||
$pa_config->{"repl_dbpass"} = undef; # 7.0.770
|
||||
|
||||
$pa_config->{"ssl_verify"} = 1; # 7.0 774
|
||||
$pa_config->{"ssl_verify"} = 0; # 7.0 774
|
||||
|
||||
# Check for UID0
|
||||
if ($pa_config->{"quiet"} != 0){
|
||||
|
|
Loading…
Reference in New Issue