Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. server:
  2. port: 8888
  3.  
  4. spring:
  5. cloud:
  6. config:
  7. server:
  8. git:
  9. searchPaths: '{profile}'
  10. #username: username
  11. #password: password
  12. #uri: https://stash.mycompany.com/scm/project/config_repo.git
  13. # local
  14. uri: file:///C:/projects/config_repo
  15.  
  16. logging:
  17. #config: https://stash.mycompany.com/projects/project/repos/config_repo/${spring.profiles.active:default}/log4j.xml?raw
  18. #username: username
  19. #password: password
  20. # local
  21. config: file:///C:/projects/config_repo/${spring.profiles.active:default}/log4j.xml
  22.  
  23. spring:
  24. application:
  25. name: client-app
  26. profiles:
  27. active: dev
  28. cloud:
  29. config:
  30. #uri: http://www.mycompany.com/repos/config-server/
  31. # local
  32. uri: http://localhost:8888/config-server
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement