mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-23 03:39:23 +01:00
certbot-ssl.sh: initial commit
This commit is contained in:
parent
19a8c9f5c3
commit
2ebe287ce4
19
bash/certbot-ssl.sh
Normal file
19
bash/certbot-ssl.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
# WARNING!
|
||||
# Check file permissions very carefully so other users cannot access the
|
||||
# certificate copies.
|
||||
# Used with crontab.
|
||||
|
||||
# Syncplay
|
||||
cp /etc/letsencrypt/live/relpda.mikaela.info/* /opt/syncplay/ssl/
|
||||
chown -R syncplay:root /opt/syncplay/ssl
|
||||
|
||||
# Mumble
|
||||
cp /etc/letsencrypt/live/relpda.mikaela.info/* /var/lib/mumble-server/ssl/
|
||||
chown -R mumble-server:mumble-server /var/lib/mumble-server/ssl/
|
||||
# 1.3.0+ reloads certificate without restart on SIGUSR1
|
||||
pkill $(cat /var/run/mumble-server/mumble-server.pid) -USR1
|
||||
|
||||
# ZNC via https://wiki.znc.in/Signed_SSL_certificate#Certbot
|
||||
cat /etc/letsencrypt/live/relpda.mikaela.info/{privkey,fullchain}.pem > /home/znc/.znc/znc.pem
|
Loading…
Reference in New Issue
Block a user