Advertisement
Guest User

Untitled

a guest
Feb 25th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.98 KB | None | 0 0
  1. # app config
  2. app.descargasat.wsSchema=http
  3. app.descargasat.wsHost=localhost:8383/cfdi
  4. app.sync.schedule=true
  5. app.filemanager.rootPath=/var/metacontable/files
  6. app.servlet.urlMappings=/*
  7.  
  8. # datasource config (mysql only)
  9. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  10. spring.datasource.username=metacontable
  11. spring.datasource.password=drydGegg7
  12. spring.datasource.url=jdbc:mysql://localhost:3306/metacontable?useSSL=false
  13. spring.datasource.max-active=5
  14. spring.datasource.initial-size=2
  15. spring.datasource.max-idle=2
  16. spring.datasource.min-idle=1
  17.  
  18. # http config
  19. #server.contextPath=/cfdi
  20. server.port=8484
  21. # management config
  22. management.port=8483
  23. management.security.enabled=false
  24.  
  25. # logging config
  26. logging.level.com.nuevebit=INFO
  27. logging.file=/var/metacontable/log/app.log
  28. logging.level.com.nuevebit=INFO
  29.  
  30. # configuración para migración
  31. flyway.locations=classpath:db/migration/mysql, classpath:db/migration/common
  32. /var/metacontable/config/application.properties (END)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement