From c9f60e8e3523049dd094b71d642a563015f1d2be Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 5 Jan 2019 11:19:47 +0100 Subject: [PATCH] Update for certbot. --- README | 10 +++++----- setup.py | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README b/README index 007cbe8..c2fb085 100644 --- a/README +++ b/README @@ -11,19 +11,19 @@ it up. Please back up your VCL configuratoin before use. To use: - 1. Install letsencrypt as usual, with letsencrypt-auto. + 1. Install certbot as usual. - 2. Activate the venv: + 2. Activate the venv, if installed in a venv: - . ~/.local/share/letsencrypt/bin/activate + . ~/.local/share/certbot/bin/activate 3. Install the module: - pip install -e path/to/this/letsencrypt-varnish + pip3 install -e path/to/this/certbot-hitch 4. Ask for a certificate: - sudo ~/.local/share/letsencrypt/bin/letsencrypt --agree-dev-preview --server https://acme-v01.api.letsencrypt.org/directory -a letsencrypt-varnish-plugin:varnish -d certonly + sudo certbot -a certbot-varnish:varnish -d certonly Varnish itself does not support SSL, so the module is just for authentication, diff --git a/setup.py b/setup.py index afe53f3..deac39b 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from setuptools import setup setup( - name='letsencrypt-varnish-plugin', + name='certbot-varnish', package='varnish.py', install_requires=[ - 'letsencrypt', + 'certbot>=0.26.0', 'zope.interface', ], entry_points={ - 'letsencrypt.plugins': [ + 'certbot.plugins': [ 'varnish = varnish:Authenticator', ], }, -- 2.39.2