We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/oauth2-proxy/mockoidc/blob/main/README.md?plain=1#L43-L53
This doesn't work because RunTLS calls net.Listen instead of a tls.Listen: https://github.com/oauth2-proxy/mockoidc/blob/main/mockoidc.go#L99
net.Listen
tls.Listen
This example suffers from the same issue if it's trying to demonstrate TLS (which the non-nil tlsConfig led me to believe) - https://github.com/oauth2-proxy/mockoidc/blob/main/README.md?plain=1#L160-L177
Changing the last example to use tls.Listen produces a working TLS OpenID Provider.
Thanks for this project!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/oauth2-proxy/mockoidc/blob/main/README.md?plain=1#L43-L53
This doesn't work because RunTLS calls
net.Listen
instead of atls.Listen
: https://github.com/oauth2-proxy/mockoidc/blob/main/mockoidc.go#L99This example suffers from the same issue if it's trying to demonstrate TLS (which the non-nil tlsConfig led me to believe) - https://github.com/oauth2-proxy/mockoidc/blob/main/README.md?plain=1#L160-L177
Changing the last example to use
tls.Listen
produces a working TLS OpenID Provider.Thanks for this project!
The text was updated successfully, but these errors were encountered: