I meet some problems with my aspnetcore API's and Linux's environment.
I have an Angular project et 5 .net projects (API's and Worker Services) deployed for each of them in an docker container, all orchestred by a docker-compose.
I have a last Nginx container and I successfully certified my domain with "Letsencrypt" (docker image), that work's with my angular project.
But when I try to do request from the client to the aspnetcore API's (self-signed certificate), this doesn't work at all.
ISSUE => net::ERR_CERT_AUTHORITY_INVALID
So, I read many and many topics and articles about this issue, and I found this last article : https://letsencrypt.org/docs/certificates-for-localhost/, that explain, we can't certified "localhost" , so we should declare our self-signed certificate in each browser.
So my question is : can I do that once for all and for every user want to access my website?
May be aspnetcore and linux are absolutely not compatible (especially for SSL).
What can I do? I am a bit lost now...