summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-04-12 12:32:10 -0400
committerrsiddharth <s@ricketyspace.net>2020-04-12 12:32:10 -0400
commitb30e94d971dfade1c3b5ffa231ab2a2b472700db (patch)
tree8b367d60c8341cce79b03b86a01bdd8ddb6294d6 /README.md
parent2127478b55a8b1cbd06829ebdd398dd999cc41b5 (diff)
sign_csr.py -> acmens.py
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index eec92c2..6be74ce 100644
--- a/README.md
+++ b/README.md
@@ -6,10 +6,10 @@ A fork of [acme-nosudo][]. It uses ACMEv2 protocol and requires Python 3.
acmens has two scripts:
- - sign_csr.py
+ - acmens.py
- revoke_crt.py
-The `sign_csr.py` is for getting a new SSL certificate or renewing a
+The `acmens.py` is for getting a new SSL certificate or renewing a
SSL certificate for a domain.
The `revoke_crt.py` is for revoking a certificate for a domain.
@@ -53,7 +53,7 @@ account private key, email address, and the domain CSR. The paths can be
relative or absolute.
```sh
-python3 sign_csr.py --account-key user.key --email mail@example.com domain.csr > signed.crt
+python3 acmens.py --account-key user.key --email mail@example.com domain.csr > signed.crt
```
When you run the script, it will:
@@ -75,7 +75,7 @@ First, you will need to the user account key for Let's Encrypt that was used
when the certifacate was signed.
Second, you will need the PEM encoded signed certificate that was produced by
-`sign_csr.py`.
+`acmens.py`.
Third, you run the script using python and passing in the path to your user
account key and the signed domain certificate. The paths can be relative or