Hi,
To implement mTLS client authentication in azure app service node.js app, I did the following task:
- Created a certificate using Azure "App Service Certificate" & exported as p12
- Configured custom domain for the node.js app
- Configured certificate to custom domain
- Created mTLS client authentication certificate (using openssl) from exported certificate (p12)
- In azure app service, Client certificate mode is set to required
- In azure app service, set environment variables “WEBSITE_LOAD_CERTIFICATES” and “WEBSITE_LOAD_ROOT_CERTIFICATES” to value certificate thumbprint
- Implemented mTLS client authentication certificate in node.js and other relevant codes
Still, getting error “You don't have authorisation to view this page. HTTP ERROR 403”
Is there something, am I missing out?
Regards,
Vishnu Rana