summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Roesler <diafygi@gmail.com>2018-03-13 07:26:41 -0700
committerDaniel Roesler <diafygi@gmail.com>2018-03-13 07:26:41 -0700
commit98f733893756ad1ad31b5e483b5cd731527f0a46 (patch)
tree2d613434580b264b7fe1f4f85b475f26547923b9 /README.md
parent2e91a47f82c7d2a60c85998f7ab11d67a8b2d548 (diff)
renamed to acme-nosudo
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 2e0e76e..de0a111 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Let's Encrypt Without Sudo
+# ACME Without Sudo
The [Let's Encrypt](https://letsencrypt.org/) initiative is a fantastic program
that offers **free** https certificates! However, the one catch is that you need
@@ -12,7 +12,7 @@ have access to my private keys. I'd just like the free ssl certificate, please.
So I made a script that does that. You generate your private key and certificate
signing request (CSR) like normal, then run `sign_csr.py` with your CSR to get
-it signed. The script goes through the [ACME protocol](https://github.com/letsencrypt/acme-spec)
+it signed. The script goes through the [ACME protocol](https://github.com/ietf-wg-acme/acme/)
with the Let's Encrypt certificate authority and outputs the signed certificate
to stdout.
@@ -297,7 +297,7 @@ server {
ssl_prefer_server_ciphers on;
location / {
- return 200 'Let\'s Encrypt Example: https://github.com/diafygi/letsencrypt-nosudo';
+ return 200 'Let\'s Encrypt Example: https://github.com/diafygi/acme-nosudo';
add_header Content-Type text/plain;
}
}
@@ -404,7 +404,7 @@ After I released this script, Let's Encrypt added a manual authenticator to
allow the Let's Encrypt client to not have to be run on your server. Hooray!
However, the Let's Encrypt client still has access to your user account private
keys, so please be aware of that. Anyway, check out the comment on issue
-[#5](https://github.com/diafygi/letsencrypt-nosudo/issues/5#issuecomment-117283651)
+[#5](https://github.com/diafygi/acme-nosudo/issues/5#issuecomment-117283651)
to see how to use the manual authenticator in the official Let's Encrypt client.
```