From 4a11c5f5cbf2b78aa01c6efecf594f5b7778972a Mon Sep 17 00:00:00 2001 From: karl wiggisser Date: Wed, 18 Oct 2017 22:41:56 +0200 Subject: [PATCH] docs: add pfx support for https --- wiki/ssl.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/wiki/ssl.md b/wiki/ssl.md index ecde78280..71be7d961 100644 --- a/wiki/ssl.md +++ b/wiki/ssl.md @@ -18,8 +18,8 @@ Once you update the listen and try to run verdaccio again will ask for certifica $ openssl req -new -sha256 -key ~/.config/verdaccio/verdaccio-key.pem -out ~/.config/verdaccio/verdaccio-csr.pem $ openssl x509 -req -in ~/.config/verdaccio/verdaccio-csr.pem -signkey ~/.config/verdaccio/verdaccio-key.pem -out ~/.config/verdaccio/verdaccio-cert.pem ```` - -* Edit your config file `~/.config/verdaccio/config.yalm` an add the following section (more info on the `key`, `cert` and `ca` arguments on the [Node documentation](https://nodejs.org/api/tls.html#tls_tls_createsecurecontext_options)) + +* Edit your config file `~/.config/verdaccio/config.yalm` and add the following section ```` https: @@ -28,6 +28,16 @@ https: ca: ~/.config/verdaccio/server.ca ```` +Alternatively, if you have a certificate as `server.pfx` format, you can add the following configuration section. The passphrase is optional and only needed, if your certificate is encrypted. + +```` +https: + pfx: ~/.config/verdaccio/server.pfx + passphrase: 'secret' +```` + +More info on the `key`, `cert`, `ca`, `pfx` and `passphrase` arguments on the [Node documentation](https://nodejs.org/api/tls.html#tls_tls_createsecurecontext_options) + * Run `verdaccio` in your command line. * Open the browser and load `https://your.domain.com:port/`