Skip to content

Commit

Permalink
Fix wrong certs path in ApiListener config
Browse files Browse the repository at this point in the history
refs #5450
  • Loading branch information
Michael Friedrich authored and gunnarbeutner committed Sep 12, 2017
1 parent 501ade3 commit 37ea6ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions etc/icinga2/features-available/api.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 37ea6ab

Please sign in to comment.