Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. #disable connection to redis
  2. spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.session.SessionAutoConfiguration
  3. spring.profiles.active=dev
  4. spring.thymeleaf.cache=false
  5.  
  6. # Hibernate Config
  7. spring.jpa.hibernate.ddl-auto=update
  8. spring.jpa.hibernate.naming-strategy=org.hibernate.cfg.ImprovedNamingStrategy
  9. spring.jpa.database=mysql
  10. spring.jpa.show-sql=true
  11.  
  12. # Pharma Datasource
  13. spring.datasource.driverClassName=com.mysql.jdbc.Driver
  14. spring.datasource.url=jdbc:mysql://localhost:3306/pis
  15. spring.datasource.username=root
  16. spring.datasource.password=
  17.  
  18. # Authentication datasource
  19. auth.datasource.driverClassName=com.mysql.jdbc.Driver
  20. auth.datasource.url=jdbc:mysql://localhost:3306/oauth2
  21. auth.datasource.username=root
  22. auth.datasource.password=
  23.  
  24. safesat.credential.endpointURL=http://localhost:8085
  25. safesat.credential.clientId=safesatadmin
  26. safesat.credential.secret=safesatsecret
  27.  
  28. safesat-ssl.port=9443
  29. safesat-ssl.redirectPort=8080
  30.  
  31. #change me.
  32. pis-ssl.keyStore=/srv/pis-web/config/keystore.jks
  33. pis-ssl.keyStorePassword=adminadmin
  34. pis-ssl.keyPassword=adminadmin
  35. pis-ssl.alias=server
  36.  
  37. pis.redis.port=6380
  38. pis.redis.hostName=localhost
  39.  
  40. #Ping the connection and keep it alive
  41. server.port=8086
  42. auth.datasource.testOnBorrow=true
  43. auth.datasource.validationQuery=SELECT 1
  44. auth.datasource.testWhileIdle=true
  45.  
  46. spring.datasource.testOnBorrow=true
  47. spring.datasource.validationQuery=SELECT 1
  48. spring.datasource.testWhileIdle=true
  49.  
  50. logging.config=logback-spring.xml
  51. #Email Config
  52. spring.mail.host=safesat.yourwebhosting.com
  53. spring.mail.port=587
  54. spring.mail.username=airrx@safesat.com.ph
  55. spring.mail.password=AirRx123!
  56. spring.mail.properties.mail.smtp.starttls.enable=true
  57. spring.mail.properties.mail.debug=true
  58. spring.mail.properties.mail.smtp.auth=true
  59.  
  60.  
  61. #JasperReport Config
  62. #change values according to location of files in server
  63. #jasper.report.rx.logo.url=/srv/pis-web/src/main/resources/static/resources/tst/img/rx.jpg
  64. #jasper.report.prescairreport.logo.url=/srv/pis-web/src/main/resources/static/resources/tst/img/prescair_report.jpg
  65.  
  66. #File uploads config
  67. #attachment.file.location=/srv/pis-web/private_files/
  68. #public folder directories
  69. #pharma.files.location=/srv/pis-web/uploaded_files/
  70. #pharma.files.repo=${prescair.baseurl}/uploaded_files
  71.  
  72. #multipart.max-file-size=25MB
  73. #multipart.max-request-size=25MB
  74.  
  75. #front page video sources
  76. #login-doctorVideos.chrome=
  77. #login-doctorVideos.firefox=
  78. #login-doctorVideos.safari=
  79. #login-doctorVideos.opera=
  80. #login-patientVideos.chrome=
  81. #login-patientVideos.firefox=
  82. #login-patientVideos.safari=
  83. #login-patientVideos.opera=
  84. #login-pharmacistVideos.chrome=
  85. #login-pharmacistVideos.firefox=
  86. #login-pharmacistVideos.safari=
  87. #login-pharmacistVideos.opera=
  88.  
  89.  
  90. #rabbitMQ config
  91. spring.rabbitmq.host=localhost
  92. spring.rabbitmq.port=5672
  93. spring.rabbitmq.username=guest
  94. spring.rabbitmq.password=guest
  95. spring.rabbitmq.virtual-host=/
  96. #change value for reconnection timeout in stomp to rabbitmq server
  97. rabbit.timeout=5000
  98.  
  99. #Email Sender Config
  100. #change values according to URL/IP address of Prescair
  101. prescair.baseurl=http://172.16.0.142:8086
  102. admin.email=kate@totalsofttech.com.ph
  103.  
  104. mqtt.username=safesat
  105. mqtt.password=s4f3s4T!
  106. mqtt.url=tcp://172.16.0.16:1883
  107. mqtt.timeout=10000
  108.  
  109. #queue url
  110. queue.accountId=2
  111. #queue.url.base=http://172.16.0.111:8091
  112. queue.url.base=http://172.16.0.133:8091
  113. queue.webservice.create=${queue.url.base}/api/queue/patient/add
  114. queue.webservice.update=${queue.url.base}/api/queue/patient/updateByReference
  115. queue.webservice.findByDateAndNumber=${queue.url.base}/api/queue/patient/find
  116. queue.webservice.update.walkin=${queue.url.base}/api/queue/patient/updateBySchedule
  117.  
  118. pis.baseurl=http://172.16.0.46:8086
  119. pis.files.location=/srv/pis-web/
  120. pis.files.repo=${pis.baseurl}/files
  121. report.baseurl=/srv/pis-web/reports/
  122. report.prescription.url=${report.baseurl}prescription.jasper
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement