-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to get credentials outside of a demo example #130
Comments
Generally, for PROD environments the server should present a valid (trusted by known CA) certificate and I intend Having said that, I don't know if you already had a look at In that example, the server is also serving the web resources (the client web application), and when the server starts the certificates is injected in the javascript. With this approach, the web client is "dynamic" and can always be potentially updated by the server itself with its hash. |
Thanks!
|
Sorry, PKI stands for Public Key Infrastructure, it is how generally certificate infrastructure works. What I meant is: if you have a PROD environment you should rely on good practices like serving a certificate that clients can check against a well-known trusted authority (CA). There are free solution to sign a certificate, for example: https://letsencrypt.org/ |
@cBournhonesque consider using @BiagioFesta |
Hi,
I got a test working where I'm generating self-signed certificates; which I need to include in the client with the
server_certificate_hashes
option.But in a real use-case where I deploy my server, how would clients get correct credentials?
The text was updated successfully, but these errors were encountered: