application.yml 737 B

123456789101112131415161718192021222324252627282930
  1. server:
  2. # 测试环境
  3. port: 8000
  4. ssl:
  5. enabled: true
  6. key-store-type: JKS
  7. key-store: src/main/resources/sslFjsTestServer.p12
  8. # key-store: classpath:sslFjsTestServer.p12
  9. key-store-password: fjs210207
  10. key-alias: sslFjsTestServer
  11. trust-store-password: fjs210207
  12. trust-store-type: JKS
  13. trust-store-provider: SUN
  14. client-auth: need
  15. address: 192.168.0.27
  16. # address: 180.76.146.227
  17. spring:
  18. application:
  19. name: fujisu-ocr-server
  20. profiles:
  21. active: dev
  22. # active: test
  23. # active: prod
  24. servlet:
  25. multipart:
  26. max-file-size: 50MB
  27. max-request-size: 50MB
  28. mybatis-plus:
  29. mapper-locations: classpath*:/mapper/*Mapper.xml
  30. typeAliasesPackage: com.pavis.ai.app.fjsocrasy.model