mirror of
https://github.com/wekan/wekan.git
synced 2026-01-06 09:38:49 +01:00
Reorganized Docs. In Progress.
This commit is contained in:
parent
1961e22cbd
commit
ce89ff4833
202 changed files with 0 additions and 0 deletions
12
docs/Webhooks/WebHook-And-CA.md
Normal file
12
docs/Webhooks/WebHook-And-CA.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
Because NodeJS uses an [hardcoded list of certificates](https://github.com/nodejs/node/issues/4175) if you deploy a site (receiving the webhook from wekan) behind a reverse proxy on https with a Let's Encrypt certificate you may have a problem: Let's Encrypt's CA is not recognized. The correct answer is [here](https://stackoverflow.com/questions/29283040/how-to-add-custom-certificate-authority-ca-to-nodejs/47160447#47160447).
|
||||
|
||||
* Download the Let’s Encrypt Authority X3 (IdenTrust cross-signed) from [here](https://letsencrypt.org/certificates/)
|
||||
```sh
|
||||
cd /etc/ssl/certs
|
||||
wget https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem.txt -O lets-encrypt-x3-cross-signed.pem
|
||||
```
|
||||
|
||||
* Now start the application with
|
||||
```sh
|
||||
NODE_EXTRA_CA_CERTS=/etc/ssl/certs/lets-encrypt-x3-cross-signed.pem node main.js
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue