-
Notifications
You must be signed in to change notification settings - Fork 122
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
support https configuration #258
base: master
Are you sure you want to change the base?
Conversation
@weeco can you please review |
TLSCertFile string `koanf:"tlsCertificate"` | ||
TLSKeyFile string `koanf:"tlsKey"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried to update this into your branch, but I didn't have permissions to do changes. A minor change for consistency with other TLS configs (kafka.tls)
TLSCertFile string `koanf:"tlsCertificate"` | |
TLSKeyFile string `koanf:"tlsKey"` | |
TLSCertFile string `koanf:"tlsCertFilepath"` | |
TLSKeyFile string `koanf:"tlsKeyFilepath"` |
# Certificate file to be used if configuring as a HTTPS server, leave empty to configure as a HTTP server | ||
tlsCertificate: "" | ||
# Key file to be used if configuring as a HTTPS server, ignored if tlsCertificate isnt set | ||
tlsKey: "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Certificate file to be used if configuring as a HTTPS server, leave empty to configure as a HTTP server | |
tlsCertificate: "" | |
# Key file to be used if configuring as a HTTPS server, ignored if tlsCertificate isnt set | |
tlsKey: "" | |
# Certificate file to be used if configuring as an HTTPS server, leave empty to configure as an HTTP server | |
tlsCertFilepath: "" | |
# Key file to be used if configuring as a HTTPS server, ignored if tlsCertFilepath isn't set | |
tlsKeyFilepath: "" |
No description provided.