application.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. spring.profiles.active: report-server-online
  2. sleep: 0
  3. # 配置输出日志
  4. logging:
  5. level:
  6. org.springframework.cloud.gateway: TRACE
  7. org.springframework.http.server.reactive: DEBUG
  8. org.springframework.web.reactive: DEBUG
  9. reactor.ipc.netty: DEBUG
  10. #开启端点
  11. management:
  12. endpoints:
  13. web:
  14. exposure:
  15. include: '*'
  16. security:
  17. enabled: false
  18. ---
  19. # 报告服务开发环境
  20. spring:
  21. profiles: report-server-dev
  22. order.autoReport.upload.path: /Users/guochao/Desktop/project/enterprise-mooctest-site/var/www/reportFile/
  23. order.autoReport.builder.copyPath: /Users/guochao/Desktop/project/enterprise-mooctest-site/var/www/reportBuilder/
  24. order.autoReport.service.path: /Users/guochao/Desktop/project/enterprise-mooctest-site/projects/
  25. static.resource.autoReport.url: /reportFile/
  26. order.autoReport.image.upload.path: /mooctest-report/src/images/
  27. order.vulReport.json.upload.path: /static-scan-report/src/json/
  28. host.ip: 106.14.81.62
  29. ---
  30. # 报告服务线上环境
  31. spring:
  32. profiles: report-server-online
  33. static.resource.autoReport.url: /reportFile/
  34. order.autoReport.upload.path: /var/www/reportFile/
  35. order.autoReport.image.upload.path: /mooctest-report/src/images/
  36. order.autoReport.service.path: /projects/
  37. order.autoReport.builder.copyPath: /var/www/reportBuilder/
  38. order.vulReport.json.upload.path: /static-scan-report/src/json/