Skip to content

Commit

Permalink
Fix creating certificate authority doc (apache#3001)
Browse files Browse the repository at this point in the history
*Motivation*

wget a github link is downloading an html page, not the actual content.
if we want to fetch the actual content, we should use the githubusercontent link.

*Changes*

Change the github link to githubusercontent link.
  • Loading branch information
sijie authored Nov 19, 2018
1 parent 5e446a6 commit d80eee6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion site2/docs/security-tls-transport.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Create a directory for your CA, and place [this openssl configuration file](http
```bash
$ mkdir my-ca
$ cd my-ca
$ wget https://github.com/apache/pulsar/tree/master/site2/website/static/examples/openssl.cnf
$ wget https://raw.githubusercontent.com/apache/pulsar/master/site2/website/static/examples/openssl.cnf
$ export CA_HOME=$(pwd)
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Create a directory for your CA, and place [this openssl configuration file](http
```bash
$ mkdir my-ca
$ cd my-ca
$ wget https://github.com/apache/incubator-pulsar/tree/master/site2/website/static/examples/openssl.cnf
$ wget https://raw.githubusercontent.com/apache/pulsar/master/site2/website/static/examples/openssl.cnf
$ export CA_HOME=$(pwd)
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Create a directory for your CA, and place [this openssl configuration file](http
```bash
$ mkdir my-ca
$ cd my-ca
$ wget https://github.com/apache/pulsar/tree/master/site2/website/static/examples/openssl.cnf
$ wget https://raw.githubusercontent.com/apache/pulsar/master/site2/website/static/examples/openssl.cnf
$ export CA_HOME=$(pwd)
```

Expand Down

0 comments on commit d80eee6

Please sign in to comment.