Skip to content

Commit

Permalink
Nedbank cert readme.md (#6413)
Browse files Browse the repository at this point in the history
* Nedbank cert readme.md

Signed-off-by: Ruben <[email protected]>

* Update services/121-service/src/payments/fsp-integration/nedbank/README.md

Co-authored-by: Copilot <[email protected]>

* Update services/121-service/src/payments/fsp-integration/nedbank/README.md

Co-authored-by: Copilot <[email protected]>

* Update services/121-service/src/payments/fsp-integration/nedbank/README.md

* Update services/121-service/src/payments/fsp-integration/nedbank/README.md

Co-authored-by: Elwin Schmitz <[email protected]>

* lint

---------

Signed-off-by: Ruben <[email protected]>
Co-authored-by: Ruben <[email protected]>
Co-authored-by: Copilot <[email protected]>
Co-authored-by: Elwin Schmitz <[email protected]>
  • Loading branch information
4 people authored Jan 23, 2025
1 parent 0058baa commit 069e09e
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Certificate Handling in Azure App Service

To enable loading certificate files via environment variables in the Azure App Service, follow these steps:

1. **Enable Certificate Loading**:

- Set the `WEBSITE_LOAD_CERTIFICATES=*` environment variable in the Azure App Service configuration.

2. **Upload the Public Key Certificate**:

- In the Azure Portal, navigate to the instance's **App Service** > **Settings** > **Certificates**.
- Press 'Bring your own certificates (.pfx)'
- Upload the public key certificate (`.pfx`-file) and name it.
- This will generate a "thumbprint" which will be used as the filename for the certificate.

3. **Set the Certificate-path**:

- The location of the certificate needs to be set in the environment variable:

```dotenv
NEDBANK_CERTIFICATE_PATH=/var/ssl/private/<thumbprint>.p12
```

0 comments on commit 069e09e

Please sign in to comment.