123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- spring.profiles.active: private-cloud
- spring:
- mvc:
- favicon:
- enabled: false
- # thymeleaf
- thymeleaf:
- prefix: classpath:/templates/
- check-template-location: true # 这个可以不配置,检查模板位置
- suffix: .html
- encoding: UTF-8
- content-type: text/html
- mode: HTML5
- cache: false #避免改了模版还要重启服务器
- ---
- spring:
- profiles: dev
- thymeleaf:
- cache: false
- mongodb1.database: crowd_review
- mongodb1.host: 127.0.0.1
- mongodb1.port: 27017
- mongodb2.database: co-report
- mongodb2.host: 127.0.0.1
- mongodb2.port: 27017
- report.export.addr: http://47.99.140.117:9002/generateReport
- report.export.excel.addr: http://47.99.140.117:9003/generateReport
- task.info.addr: http://47.99.140.117:9001/Bug/api/extra/getExamList
- server:
- port: 9004
- # port: 8090
- logging:
- level:
- com.mooctest: debug
- pattern:
- console: "%d{yyyy-MM-dd HH:mm:ss} [%p] [%t] [%c] %m%n"
- ---
- spring:
- profiles: test
- thymeleaf:
- cache: false
- server:
- port: 9004
- # port: 8090
- logging:
- level:
- com.mooctest: debug
- pattern:
- console: "%d{yyyy-MM-dd HH:mm:ss} [%p] [%t] [%c] %m%n"
- ---
- spring:
- profiles: private-cloud
- thymeleaf:
- cache: false
- task:
- info:
- addr: http://47.98.174.59:8100/Bug/api/extra/getExamList
- distribute:
- url: test
- server:
- port: 9004
- report.host: 47.98.174.59:8100
- audit:
- distribute:
- addr: test
- mooctest:
- host: http://101.37.175.111:8191
- report.export.addr: http://47.99.140.117:9002/generateReport
- report.export.excel.addr: http://47.98.174.59:8095/generateReport
- mongodb1.database: crowd_review_enterprise
- mongodb1.host: 47.98.174.59
- mongodb1.port: 27017
- mongodb1.username: root
- mongodb1.password: 123456
- mongodb2.database: co-enterprise
- mongodb2.host: 47.98.174.59
- mongodb2.port: 27017
- mongodb2.username: root
- mongodb2.password: 123456
- useOss: false
- filePath: /xinchuang/data/
- urlPath: http://47.98.174.59:8100/resourcesXinchuang/
- logging:
- level:
- com:
- mooctest: debug
- pattern:
- console: "%d{yyyy-MM-dd HH:mm:ss} [%p] [%t] [%c] %m%n"
- ---
|