I'm running into the same issue. Using python venv I was able to get certbot working using pip.
Steps: Install virtualenv
pip install virtualenv --upgrade
Create a virtualenv
virtualenv -p /usr/bin/python2.7 certbot
# Download this files | |
- openssl.conf | |
- openssl-tsa.conf | |
- testing.txt | |
- tsaserial | |
# Generate CA Certificate | |
openssl req -new -newkey rsa:4096 -nodes -out ca.csr -keyout ca.key -config openssl.conf | |
openssl x509 -trustout -signkey ca.key -days 1461 -req -in ca.csr -out ca.pem |
I'm running into the same issue. Using python venv I was able to get certbot working using pip.
Steps: Install virtualenv
pip install virtualenv --upgrade
Create a virtualenv
virtualenv -p /usr/bin/python2.7 certbot
L2TP on its own is not secure enough, so we’ll need to pair this protocol with IPSec.
To establish an L2TP VPN connection from the Ubuntu command line, we must first install strongswan
and xl2tpd
We’re going to use StrongSwan for IPSec.
apt-get install strongswan xl2tpd -y
Add yourself to the docker
group to be able to run containers as non-root (see Post-install steps for Linux).