Advertisement
Guest User

Untitled

a guest
Jul 24th, 2018
660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. # Server settings
  2. server.contextPath=/vendor_bo
  3. server.port=8047
  4.  
  5. # ===============================
  6. # = Database Configuration
  7. # ===============================
  8. # = MySql Database
  9. # ===============================
  10. #spring.datasource.driverClassName=@spring.datasource.driverClassName@
  11. #spring.datasource.url=@spring.datasource.url@
  12. #spring.datasource.username=@spring.datasource.username@
  13. #spring.datasource.password=@spring.datasource.password@
  14. #spring.jpa.properties.hibernate.dialect=@spring.jpa.properties.hibernate.dialect@
  15. # ===============================
  16. # = Database Configuration
  17. # ===============================
  18. # = sql server Database
  19. # ===============================
  20. spring.datasource.url=jdbc:sqlserver://172.16.20.8;databaseName=agb
  21. spring.datasource.username=sa
  22. spring.datasource.password=Pr0xym-1T
  23. spring.datasource.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
  24. spring.jpa.show-sql=true
  25. spring.jpa.hibernate.dialect=org.hibernate.dialect.SQLServer2012Dialect
  26. spring.jpa.hibernate.ddl-auto = update
  27. spring.jpa.properties.hibernate.connection.characterEncoding=utf-8
  28. spring.http.encoding.charset=UTF-8
  29. spring.http.encoding.enabled=true
  30. spring.http.encoding.force=true
  31. spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true
  32.  
  33. # ===============================
  34. # = Ldap properties
  35. # ===============================
  36. data.sync=true
  37.  
  38. ldap.enabled=false
  39. auth.memory = true
  40. rocketchat.enabled = true
  41.  
  42. backend.username = vendor
  43. backend.password = vendor
  44.  
  45. # ===============================
  46. # = Spring properties
  47. # ===============================
  48.  
  49. security.basic.enabled=false
  50.  
  51.  
  52. #Mail settings
  53. #mail.host=smtp.office365.com
  54. #mail.port=587
  55. #mail.username=med-amine.ben-ahmed@proxym-it.com
  56. #mail.password=Pr0xym-1T
  57. #mail.properties.mail.smtp.starttls.enable=true
  58. #mail.subject=ocib Corporate Registration
  59. #mail.mailfrom=med-amine.ben-ahmed@proxym-it.com
  60.  
  61. mail.protocol=smtp
  62. mail.host=smtp.gmail.com
  63. mail.port=587
  64. mail.smtp.auth=true
  65. mail.smtp.starttls.enable=true
  66. mail.from=nasreddinejrebi@gmail.com
  67. mail.username=nasreddinejrebi@gmail.com
  68. mail.password=123456
  69.  
  70.  
  71. #search multipart
  72. spring.http.multipart.max-file-size=5MB
  73. spring.http.multipart.max-request-size=5MB
  74.  
  75. upload.protocol = http://
  76. upload.server = localhost
  77. upload.port = 9060
  78. upload.context = /vendor_bo
  79. # ==============================================================
  80. # = Spring Security / Queries for AuthenticationManagerBuilder
  81. # ==============================================================
  82. spring.queries.users-query=select username,password, enabled from ocib_bo_user where username=?
  83. spring.queries.roles-query=select username, authority from ocib_bo_authority where username=?
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90. uri.ws.server = http://localhost
  91. uri.ws.port = 9080
  92. uri.bo.module = vendor_bo
  93. #uri.ws.server = http://localhost
  94. #uri.ws.port = 9080
  95. uri.ws.module = vendor_backend
  96. uri.ws.branch = branchs
  97. uri.ws.registration = register
  98. uri.ws.otpconfig = config
  99. uri.ws.ociuser = user
  100. uri.ws.newspromotions = newspromotions
  101. uri.ws.welcomeemail = welcomeemail
  102. uri.ws.country = countries
  103. uri.ws.quicklink = quicklink
  104. uri.ws.quicklinkgroup = quicklinkgroup
  105. uri.ws.currency = currency
  106. uri.ws.transfertype = transfertype
  107. uri.ws.segment = segment
  108. uri.ws.segmentclass = segmentclass
  109. uri.ws.fees = fees
  110. uri.ws.chequeleave = chequeleave
  111. uri.ws.accounttype = accounttype
  112. uri.ws.card = config
  113. uri.ws.crm.serviceinfo = /crm/serviceinfo
  114. uri.ws.tenures = tenures
  115. uri.ws.faq = faq
  116. uri.ws.utilityservice = utilityservice
  117. uri.ws.generic = generic
  118. uri.ws.event = generic
  119. uri.ws.offer = generic
  120. uri.ws.compaign = generic
  121. uri.ws.merchant = generic
  122. uri.ws.greeting = greeting
  123. uri.ws.logging = logging
  124. uri.ws.upload = upload
  125. uri.ws.parameters = parameters
  126. uri.ws.feature = feature
  127. uri.ws.segmentfeature = segmentfeature
  128. uri.ws.announcement = announcement
  129. uri.ws.notification = notification
  130. uri.ws.toll = toll
  131. uri.ws.errorCodes = errorCodes
  132. uri.ws.settings = settings
  133. uri.ws.passwordrules = passwordrules
  134. uri.ws.scat = scat
  135. uri.ws.lookup = lookup
  136. uri.ws.lookupfeature = lookupfeature
  137. uri.ws.beacon = beacon
  138. uri.ws.bankinfo = bankinfo
  139. uri.ws.batchtype = batchtype
  140. uri.base.rocketchat = http://localhost:3000
  141. uri.ws.rocketchat.register = http://localhost:3000/api/v1/users.register
  142. uri.ws.rocketchat.login = http://localhost:3000/api/v1/login
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement