Advertisement
Guest User

Untitled

a guest
Oct 4th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. spring.profiles.active=test
  2.  
  3. #Pos DataSource
  4. spring.data.mongodb.database=pos
  5. spring.data.mongodb.host=172.16.0.19
  6. spring.data.mongodb.port=27017
  7. spring.data.mongodb.repositories.enabled=true
  8. spring.data.mongodb.uri=mongodb://172.16.0.19/pos
  9. #localhost/pos
  10.  
  11. #Auth DataSource
  12. auth.datasource.driverClassName=com.mysql.jdbc.Driver
  13. auth.datasource.url=jdbc:mysql://172.16.0.41:3306/oauth2
  14. auth.datasource.username=root
  15. auth.datasource.password=
  16.  
  17. #SSO Credentials
  18. safesat.credential.endpointURL=http://172.16.0.41:8085
  19. safesat.credential.clientId=safesat-admin
  20. safesat.credential.secret=safesatsecret
  21.  
  22. #SSL
  23. safesat-ssl.port=8549
  24. safesat-ssl.redirectPort=8580
  25. safesat-ssl.keyStore=/srv/safesat-finder/config/certificate/safesat.jks
  26. #/srv/safesat-family-server/safesat-family-webservice/src/main/resources/certificate/safesat.jks
  27. safesat-ssl.keyStorePassword=_s4f3s4T!
  28. safesat-ssl.keyPassword=_s4f3s4T!
  29. safesat-ssl.alias=safesat-alias
  30.  
  31. #Redis
  32. safesat.redis.port=6579
  33. safesat.redis.hostName=localhost
  34.  
  35. server.port=8587
  36. auth.datasource.testOnBorrow=true
  37. auth.datasource.validationQuery=SELECT 1
  38. auth.datasource.testWhileIdle=true
  39.  
  40. spring.datasource.testOnBorrow=true
  41. spring.datasource.validationQuery=SELECT 1
  42. spring.datasource.testWhileIdle=true
  43. logging.config=/srv/safesat-pos/safesat-pos-web/log/logback.xml
  44.  
  45. spring.mail.host=smtp.gmail.com
  46. spring.mail.port=587
  47. spring.mail.username=developer.safesat@gmail.com
  48. spring.mail.password=ihodeputaAND1/4
  49. report.invoice.receipt=/srv/safesat-pos/safesat-pos-web/config/receipt.jasper
  50.  
  51. #Default Warehouse
  52. inventory.warehouse=114
  53.  
  54. #Inventory Web URI
  55. inventory.baseurl=http://172.16.0.9:8081
  56.  
  57. inventory.stock.findallbywarehouseid=${inventory.baseurl}/api/stock/findallbywarehouseidmobile
  58. inventory.stock.multiplestockout=${inventory.baseurl}/api/stock/multiplestockout
  59. inventory.warehouse.findallbyaccountid=${inventory.baseurl}/api/warehouse/findAllWarehouseByAccountId
  60.  
  61. # Auththencation URI
  62. authentication.baseurl=http://172.16.0.41:8085
  63.  
  64. authentication.user.findAllByAccountId=${authentication.baseurl}/api/user/findAllByAccountId
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement