From 4a336b2c8362d4740e875d087ec548dcbe7b9778 Mon Sep 17 00:00:00 2001 From: "Jean-Marc Pigeon (Delson)" Date: Thu, 19 Jun 2025 08:26:05 -0400 Subject: [PATCH] Adjusting configuration certificate name --- conf/mailleur.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/conf/mailleur.conf b/conf/mailleur.conf index 13ca6a5..027555b 100644 --- a/conf/mailleur.conf +++ b/conf/mailleur.conf @@ -21,15 +21,15 @@ APPNAME=mailleur DFLTDOMAIN="localdomain" #------------------------------------------------ #Defining SERVER mode Certificate data -CA_ROOT_SRV="./certs/root-safe_CA.pem" -CA_CERT_SRV="./certs/mailleur_server-chain-cert_x509.pem" -CA_KEY_SRV="./certs/mailleur_server-key.pem" +CA_ROOT_SRV="/etc/pki/mailleur/root-safe_CA.pem" +CA_CERT_SRV="/etc/pki/mailleur/mailleur-cert.pem" +CA_KEY_SRV="/etc/pki/mailleur/mailleur-key.pem" CA_VERIFY_SRV=1 #to check PEER/client remote certificate #------------------------------------------------ #Defining CLIENT mode Certificate data -CA_ROOT_CLT="./certs/root-safe_CA.pem" -CA_CERT_CLT="./certs/localhost-chain-cert.pem" -CA_KEY_CLT="./certs/localhost-key.pem" +CA_ROOT_CLT="/etc/pki/mailleur/root-safe_CA.pem" +CA_CERT_CLT="/etc/pki/mailleur/mailleur-cert.pem" +CA_KEY_CLT="/etc/pki/mailleur/mailleur-key.pem" CA_VERIFY_CLT=0 #to check PEER/server remote certificate #------------------------------------------------ #Configured for Postgresql database -- 2.47.3