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/;
}
- [Vuejs]-How to make a dynamic list using queue approach
- [Vuejs]-Cant show images with vuejs and cloudshell
Source:stackexchange.com