aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJeremy Clerc <jclerc@google.com>2015-09-13 19:50:13 +0200
committerJeremy Clerc <jclerc@google.com>2015-09-13 19:50:13 +0200
commit5ceea8b7821646f4e43b7d6c37845c6501c402b8 (patch)
tree1c49a3d11bd54f34e10e6a5afacaba8fda4837d0 /README.md
parent33549a7f23d65bbb730a94d17f6478a159ce0770 (diff)
downloadeasypki-5ceea8b7821646f4e43b7d6c37845c6501c402b8.tar.xz
rename easyca to easypki
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 949465d..1de1bd3 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
-easyca
+easypki
======
-Easyca attempts to make managing a Certificate Authority very easy.
+Easypki attempts to make managing a Certificate Authority very easy.
Serial, index, etc, are formatted in a way to be compatible with openssl,
-so you can use openssl for commands not implemented by easyca.
+so you can use openssl for commands not implemented by easypki.
# Usage
-Easyca usage is straighforward:
+Easypki usage is straighforward:
1. Init the directory you will use
2. Create the CA
@@ -25,28 +25,28 @@ export PKI_PROVINCE="New York"
```
Before being able to create you certificates, you need to `init` the root directory.
-It creates files and directories required by easyca.
+It creates files and directories required by easypki.
```
mkdir $PKI_ROOT
-easyca init
+easypki init
```
Args passed to create make the Common Name, here: "Umbrella Corp Global Authority"
```
-easyca create --ca Umbrella Corp Global Authority
+easypki create --ca Umbrella Corp Global Authority
```
Then you can choose between server and client certificate, by default server is implied, to generate a client certificate add `--client`
Generate a wildcard certificate for your web apps:
```
-easyca create --dns "*.umbrella.com" *.umbrella.com
+easypki create --dns "*.umbrella.com" *.umbrella.com
```
Another example, a certificate for wiki and www:
```
-easyca create --dns "www.umbrella.com" --dns "wiki.umbrella.com" www.umbrella.com
+easypki create --dns "www.umbrella.com" --dns "wiki.umbrella.com" www.umbrella.com
```
For more info about available flags, checkout out the help `-h`