12345678910111213141516171819202122 |
- # 服务相关配置
- server:
- # 启动模式 debug、release
- mode: debug
- # http服务信息
- insecureServingInfo:
- # 监听端口
- port: ":8888"
- mongo:
- url: "mongodb://mongo_exisCi:mongo_CxCEWF@124.220.100.95:27017/"
- password: ""
- db: 0
- download:
- # 存储路径
- imageurl: "/download/image/"
- path: "backend/static/images"
- # 存储路径
- fileurl: "/download/file/"
- filepath: "backend/static/files"
- swag:
- # 将环境变量 NAME_OF_ENV_VARIABLE设置为任意值,则 /swagger/*any 返回404响应
- enable: "NAME_OF_ENV_VARIABLE"
|