yongjinhou commented on code in PR #16834: URL: https://github.com/apache/doris/pull/16834#discussion_r1154467888
########## fe/fe-common/src/main/java/org/apache/doris/common/Config.java: ########## @@ -338,16 +338,51 @@ public class Config extends ConfigBase { */ @ConfField public static long max_bdbje_clock_delta_ms = 5000; // 5s + /** + * Whether to enable all http interface authentication + */ + @ConfField public static boolean enable_all_http_auth = false; + /** * Fe http port * Currently, all FEs' http port must be same. */ @ConfField public static int http_port = 8030; /** - * Whether to enable all http interface authentication + * Fe https port + * Currently, all FEs' https port must be same. */ - @ConfField public static boolean enable_all_http_auth = false; + @ConfField public static int https_port = 8050; Review Comment: Current version of springboot does not support http and https sharing same port. -- 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