mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-08 08:40:13 +08:00

This change means privileges are dropped before loading certificates, starting logging, creating the pid file etc. are carried out, so all of those actions must now be changed to ensure that the unprivileged user can carry them out.
29 lines
1.1 KiB
Bash
Executable File
29 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# This is an example deploy renewal hook for certbot that copies newly updated
|
|
# certificates to the Mosquitto certificates directory and sets the ownership
|
|
# and permissions so only the mosquitto user can access them, then signals
|
|
# Mosquitto to reload certificates.
|
|
|
|
# RENEWED_DOMAINS will match the domains being renewed for that certificate, so
|
|
# may be just "example.com", or multiple domains "www.example.com example.com"
|
|
# depending on your certificate.
|
|
|
|
# Place this script in /etc/letsencrypt/renewal-hoots/deploy/ and make it
|
|
# executable after editing it to your needs.
|
|
|
|
if [ ${RENEWED_DOMAINS} == "my-mosquitto-domain" ]; then
|
|
# Copy new certificate to Mosquitto directory
|
|
cp ${RENEWED_LINEAGE}/fullchain.pem /etc/mosquitto/certs/server.pem
|
|
cp ${RENEWED_LINEAGE}/privkey.pem /etc/mosquitto/certs/server.key
|
|
|
|
# Set ownership to Mosquitto
|
|
chown mosquitto: /etc/mosquitto/certs/server.pem /etc/mosquitto/certs/server.key
|
|
|
|
# Ensure permissions are restrictive
|
|
chmod 0600 /etc/mosquitto/certs/server.pem /etc/mosquitto/certs/server.key
|
|
|
|
# Tell Mosquitto to reload certificates and configuration
|
|
pkill -HUP -x mosquitto
|
|
fi
|