mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-06-23 10:29:25 +00:00
9 lines
265 B
Bash
Executable File
9 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#https://wiki.znc.in/Signed_SSL_certificate
|
|
DOMAIN="thunix.net"
|
|
ZNCPEM=/var/lib/znc/znc.pem
|
|
|
|
echo "Updating znc.pem Before ZNC 1.7"
|
|
cat /etc/letsencrypt/live/thunix.net/privkey.pem > $ZNCPEM
|
|
cat /etc/letsencrypt/live/thunix.net/fullchain.pem >> $ZNCPEM |