Update language and spelling

This commit is contained in:
Lance Pioch 2019-02-01 17:11:49 -05:00 committed by GitHub
parent 2ad2ad30b3
commit 16e5cedc79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,23 +36,21 @@ certbot renew
```
## Troubleshooting
If you get a `Insecure Connection` or related when trying to access your panel, it is likely that the SSL has expired.
This can be easily fixed by renewing the SSL certificate, although using the command
``` text
certbot renew
```
Wont do the job. As it'll give a error such as `Error: Attempting to renew cert (domain) from /etc/letsencrypt/renew/domain.conf produced an unexpected error`.
This will happen especially if your running NGINX instead of Apache, the solution for this is to stop NGINX, renew the certificate then start NGINX once again.
You can do this by running,
If you get an `Insecure Connection` or related error when trying to access your panel, it is likely that the SSL certificate has expired.
This can be easily fixed by renewing the SSL certificate, although using the command `certbot renew` won't do the job. As it'll give a error like: `Error: Attempting to renew cert (domain) from /etc/letsencrypt/renew/domain.conf produced an unexpected error`.
This will happen especially if you're running NGINX instead of Apache. The solution for this is to stop NGINX, then renew the certificate, finally restart NGINX.
Stop NGINX:
```bash
systemctl stop nginx
```
To stop the NGINX service. Now you need to renew the certificate, you can do this by running,
Renew the certificate:
```bash
certbot renew
```
Wait for the process to complete.
Once it has, you may now re-start the NGINX service using,
Once the process has complete, you can restart the NGINX service:
```bash
systemctl start nginx
```