[fix](httpserver) creating this cookie without the "secure" flag and enabling cross-origin resource safe (#25107)

This commit is contained in:
Petrichor
2023-10-10 06:25:09 -05:00
committed by GitHub
parent 8b56ca84c7
commit 67ddfb1abc
3 changed files with 9 additions and 1 deletions

View File

@ -2217,4 +2217,11 @@ public class Config extends ConfigBase {
+ "If this database conflicts with a user's own database, please modify this field to replace "
+ "the name of the Doris built-in MySQL database with a different name."})
public static String mysqldb_replace_name = "mysql";
@ConfField(description = {
"设置允许跨域访问的特定域名,默认允许任何域名跨域访问",
"Set the specific domain name that allows cross-domain access. "
+ "By default, any domain name is allowed cross-domain access"
})
public static String access_control_allowed_origin_domain = "*";
}