提供二进制文件

为了从 config server 提供二进制文件,您需要发送 .Acceptapplication/octet-streamspring-doc.cn

Git、SVN 和原生后端

请考虑以下 GIT 或 SVN 存储库或本机后端的示例:spring-doc.cn

application.yml
nginx.conf

这可能类似于下面的清单:nginx.confspring-doc.cn

server {
    listen              80;
    server_name         ${nginx.server.name};
}

application.yml可能类似于下面的清单:spring-doc.cn

nginx:
  server:
    name: example.com
---
spring:
  profiles: development
nginx:
  server:
    name: develop.com

资源可能如下所示:/sample/default/master/nginx.confspring-doc.cn

server {
    listen              80;
    server_name         example.com;
}

/sample/development/master/nginx.conf可能如下所示:spring-doc.cn

server {
    listen              80;
    server_name         develop.com;
}

AWS S3

要为 AWS s3 启用纯文本服务,Config Server 应用程序需要包含对 . 有关如何设置该依赖项的详细信息,请参阅 Spring Cloud AWS 参考指南。 此外,当将 Spring Cloud AWS 与 Spring Boot 一起使用时,包含自动配置依赖项很有用。 然后,您需要配置 Spring Cloud AWS,如 Spring Cloud AWS 参考指南中所述。io.awspring.cloud:spring-cloud-aws-contextspring-doc.cn

解密纯文本

默认情况下,不会解密纯文本文件中的加密值。为了启用纯文本文件的解密,请在spring.cloud.config.server.encrypt.enabled=truespring.cloud.config.server.encrypt.plainTextEncrypt=truebootstrap.[yml|properties]spring-doc.cn

仅 YAML、JSON 和属性文件扩展名支持解密纯文本文件。

如果启用此功能,并且请求不受支持的文件扩展,则不会解密文件中的任何加密值。spring-doc.cn