
Originally Posted by
phalkon30
I hadn't seen those. Reading the responses it sounds like whoever is managing the site doesn't have the expertise to do it.
If anyone from BeyondPod should read this, this is all you need to do to get it up and running if you are on a linux box with Apache or Nginx (Note you need to run this as root or, if it's a sub account, one that has sudo privileges without password; IME root gives fewer errors on renewal):
Using Ubuntu as an example, adapt to whatever flavor your server is running.
Nginx
Code:
# add the repo and update
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
# install certbot
sudo apt-get install python-certbot-nginx
# configure the site with nginx flag
sudo certbot --nginx -d www.beyondpod.com # you are forcing everything over www so no need to do it for the bare domain
# when it asks if you want to redirect, I would suggest you do to force all traffic over SSL
# make sure the installation was successful
sudo certbot renew --dry-run
Apache
Code:
# add the repo and update
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
# install certbot
sudo apt-get install python-certbot-nginx
# configure the site with apache flag
sudo certbot --apache -d www.beyondpod.com # you are forcing everything over www so no need to do it for the bare domain
# when it asks if you want to redirect, I would suggest you do to force all traffic over SSL
# make sure the installation was successful
sudo certbot renew --dry-run
The above should work, but PM if you like and I can send you a quote to set this up (I develop webapps and manage deployment for my clients).