[Vuejs]-Vue.js / OpenSSL / Chrome: ERR_CERT_AUTHORITY_INVALID

0👍

I could solve this through another approach, where I wouldn’t use OpenSSL but only nginx as a proxy server and certbots https certificates, which work fine with Google Chrome. Therefore I have configured multiple proxy passes in nginx, so all of the external requests were being passed via https and then being forwarded to the local servers appropriately:

location ^~ /api/ {
    proxy_pass http://localhost:3000/;
}

location / {
    proxy_pass http://localhost:8080/;
}

Leave a comment