xiaojunjie commented on code in PR #17034: URL: https://github.com/apache/doris/pull/17034#discussion_r1121632772
########## conf/be.conf: ########## @@ -29,6 +29,13 @@ webserver_port = 8040 heartbeat_service_port = 9050 brpc_port = 8060 +# HTTPS configures +enable_https = true +# path of certificate in PEM format. +ssl_certificate_path = "$DORIS_HOME/conf/cert.pem" +# path of private key in PEM format. +ssl_private_key_path = "$DORIS_HOME/conf/key.pem" Review Comment: After turning on https, http is still available for the same port. Brpc server can automatically distinguish https from http requests. But there is no global configure to disable http request, which would be supported by brpc in the future. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org