Could you compare it with a graph for our server for last 60 days and about 25 WebRTC
clients?
![image](https://github.com/kamailio/kamailio/assets/2562241/b11398b8-9701-46e1-a4d9-e8ef188a2286)
and
![image](https://github.com/kamailio/kamailio/assets/2562241/3d1e7688-d6ff-425c-b1b5-5c736159a66f)
Here used Kamailio 5.7.2 with Letencrypt server.
Cert reloads once per two-mouth. We dot use CRL.
To avoid too often cert reloads we compare currently used certificates and the last cert
using commands like.
```sh
rsync -l --recursive --info=name --dry-run ${LECRTSDIR} ${LETARGETDIR}
>${CHKUPDLOG}
# Synchronizing certificates.
if [ ! -s ${CHKUPDLOG} ]; then
echo "Check updates. No changes required"
rm -f ${CHKUPDLOG}
else
echo "Has new certificates. Start sync"
rsync -azlcv --recursive --delete --info=name ${LECRTSDIR} ${LETARGETDIR}
>"${SYNCLOG}"
rm -f ${CHKUPDLOG}
fi
```
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3823#issuecomment-2099148193
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/3823/2099148193(a)github.com>