feat: support tls config.

This commit is contained in:
tx7do
2024-11-13 11:27:13 +08:00
parent e755b6cfc8
commit 9e051505a1
19 changed files with 1749 additions and 700 deletions

View File

@@ -4,6 +4,8 @@ package conf;
option go_package = "github.com/tx7do/kratos-bootstrap/api/gen/go/conf/v1;conf";
import "conf/v1/kratos_conf_tls.proto";
message OSS {
// MinIO
message MinIO {
@@ -11,9 +13,12 @@ message OSS {
string access_key = 2; // 访问密钥
string secret_key = 3; // 密钥
string token = 4; // 令牌
bool use_ssl = 5; // 使用SSL
string upload_host = 6; // 上传链接的主机名
string download_host = 7; // 下载链接的主机名
bool use_ssl = 10; // 使用SSL
TLS tls = 11; // TLS配置
string upload_host = 20; // 上传链接的主机名
string download_host = 21; // 下载链接的主机名
}
MinIO minio = 1;