1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-07 20:25:08 +02:00

Fix wrong certs path in ApiListener config

refs 
This commit is contained in:
Michael Friedrich 2017-09-07 16:27:56 +02:00 committed by Gunnar Beutner
parent 501ade374c
commit 37ea6ab1fc

@ -3,9 +3,9 @@
*/
object ApiListener "api" {
cert_path = LocalStateDir + "/lib/icinga2/pki/" + NodeName + ".crt"
key_path = LocalStateDir + "/lib/icinga2/pki/" + NodeName + ".key"
ca_path = LocalStateDir + "/lib/icinga2/pki/ca.crt"
cert_path = LocalStateDir + "/lib/icinga2/certs/" + NodeName + ".crt"
key_path = LocalStateDir + "/lib/icinga2/certs/" + NodeName + ".key"
ca_path = LocalStateDir + "/lib/icinga2/certs/ca.crt"
ticket_salt = TicketSalt
}