mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Update regenerate_certificate.md
This commit is contained in:
parent
78cbdf4e47
commit
66dd8eab93
1 changed files with 20 additions and 17 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Regenerate certificate
|
# Regenerate certificate
|
||||||
|
|
||||||
If you want to generate again -- not renewing -- a certificate for domain, you can follow those steps:
|
If you want to generate again -- not renewing -- a certificate for a domain, you can follow those steps:
|
||||||
|
|
||||||
(replace **example.org** with your domain)
|
(replace **example.org** with your domain)
|
||||||
|
|
||||||
|
@ -8,33 +8,36 @@ If you want to generate again -- not renewing -- a certificate for domain, you c
|
||||||
# Save YunoHost's SSL directory location for readability
|
# Save YunoHost's SSL directory location for readability
|
||||||
ssldir=/usr/share/yunohost/yunohost-config/ssl/yunoCA
|
ssldir=/usr/share/yunohost/yunohost-config/ssl/yunoCA
|
||||||
|
|
||||||
# Backup current certificates for your domain
|
# Save the final SSL path (do not forget to change your domain)
|
||||||
cp -a /etc/yunohost/certs/example.org /etc/yunohost/certs/example.org.back
|
finalpath=/etc/yunohost/certs/example.org
|
||||||
|
|
||||||
# Remove certs and configuration file in it
|
|
||||||
rm /etc/yunohost/certs/example.org/{crt.pem,key.pem,openssl.cnf}
|
|
||||||
|
|
||||||
# Copy openSSL's configuration file
|
|
||||||
cp $ssldir/openssl.cnf /etc/yunohost/certs/
|
|
||||||
|
|
||||||
# Save the serial number of the new certificate
|
# Save the serial number of the new certificate
|
||||||
serial=$(cat "$ssldir/serial")
|
serial=$(cat "$ssldir/serial")
|
||||||
|
|
||||||
|
# Backup current certificates for your domain
|
||||||
|
cp -a $finalpath $finalpath.back
|
||||||
|
|
||||||
|
# Remove certs and configuration file in it
|
||||||
|
rm $finalpath/{crt.pem,key.pem,openssl.cnf}
|
||||||
|
|
||||||
|
# Copy openSSL's configuration file
|
||||||
|
cp $ssldir/openssl.cnf $finalpath/
|
||||||
|
|
||||||
# Generate certificate and key
|
# Generate certificate and key
|
||||||
openssl req -new -config /etc/yunohost/certs/openssl.cnf -days 3650 -out $ssldir/certs/yunohost_csr.pem -keyout $ssldir/certs/yunohost_key.pem -nodes -batch
|
openssl req -new -config $finalpath/openssl.cnf -days 3650 -out $ssldir/certs/yunohost_csr.pem -keyout $ssldir/certs/yunohost_key.pem -nodes -batch
|
||||||
|
|
||||||
# Sign certificate with your server's CA
|
# Sign certificate with your server's CA
|
||||||
openssl ca -config /etc/yunohost/certs/openssl.cnf -days 3650 -in $ssldir/certs/yunohost_csr.pem -out $ssldir/certs/yunohost_crt.pem -batch
|
openssl ca -config $finalpath/openssl.cnf -days 3650 -in $ssldir/certs/yunohost_csr.pem -out $ssldir/certs/yunohost_crt.pem -batch
|
||||||
|
|
||||||
# Copy certificate and key to the right place
|
# Copy certificate and key to the right place
|
||||||
cp $ssldir/newcerts/$serial.pem /etc/yunohost/certs/crt.pem
|
cp $ssldir/newcerts/$serial.pem $finalpath/crt.pem
|
||||||
cp $ssldir/certs/yunohost_key.pem /etc/yunohost/certs/key.pem
|
cp $ssldir/certs/yunohost_key.pem $finalpath/key.pem
|
||||||
|
|
||||||
# Fix permissions
|
# Fix permissions
|
||||||
chmod 755 /etc/yunohost/certs
|
chmod 755 $finalpath
|
||||||
chmod 640 /etc/yunohost/certs/key.pem /etc/yunohost/certs/crt.pem
|
chmod 640 $finalpath/key.pem $finalpath/crt.pem
|
||||||
chmod 600 /etc/yunohost/certs/openssl.cnf
|
chmod 600 $finalpath/openssl.cnf
|
||||||
|
|
||||||
# Allow metronome to access those certificates
|
# Allow metronome to access those certificates
|
||||||
chown root:metronome /etc/yunohost/certs/key.pem /etc/yunohost/certs/crt.pem
|
chown root:metronome $finalpath/key.pem $finalpath/crt.pem
|
||||||
```
|
```
|
Loading…
Add table
Reference in a new issue