Advertisement
Guest User

Untitled

a guest
Oct 4th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.session.SessionAutoConfiguration
  2. spring.profiles.active=dev
  3. spring.thymeleaf.cache=false
  4.  
  5. # Hibernate Config
  6. spring.jpa.hibernate.ddl-auto=update
  7. spring.jpa.hibernate.naming-strategy=org.hibernate.cfg.ImprovedNamingStrategy
  8. spring.jpa.database=mysql
  9. spring.jpa.show-sql=true
  10.  
  11. #Webservice url
  12. safesatmonitoring.webservice.url=http://172.16.0.133:8083
  13. safesatmonitoring.webservice.currentlocation=/Satellite-Web-Service/service/logs/filter
  14. safesatmonitoring.webservice.allvehicle=/Satellite-Web-Service/service/vehicle/findAllActivebySsoAccountid
  15.  
  16. # POS Datasource
  17. spring.datasource.driverClassName=com.mysql.jdbc.Driver
  18. spring.datasource.url=jdbc:mysql://localhost:3306/inventory_db
  19. spring.datasource.username=root
  20. spring.datasource.password=
  21.  
  22. # Authentication datasource
  23. auth.datasource.driverClassName=com.mysql.jdbc.Driver
  24. auth.datasource.url=jdbc:mysql://172.16.0.41:3306/oauth2
  25. auth.datasource.password=
  26. auth.datasource.username=root
  27.  
  28. safesat.credential.endpointURL=http://172.16.0.41:8085
  29. safesat.credential.clientId=safesat-admin
  30. safesat.credential.secret=safesatsecret
  31. #safesat.credential.sslpublickey=/srv/auth-server/target/ssl2/safesat-public.der
  32.  
  33. safesat-ssl.port=8443
  34. safesat-ssl.redirectPort=8080
  35. safesat-ssl.keyStore=/srv/inventory/target/ssl2/safesat.jks
  36. safesat-ssl.keyStorePassword=_s4f3s4T!
  37. safesat-ssl.keyPassword=_s4f3s4T!
  38. safesat-ssl.alias=safesat-alias
  39.  
  40. safesat.redis.port=6379
  41. safesat.redis.hostName=localhost
  42.  
  43. server.port=8081
  44.  
  45. auth.datasource.testOnBorrow=true
  46. auth.datasource.validationQuery=SELECT 1
  47.  
  48. spring.datasource.testOnBorrow=true
  49. spring.datasource.validationQuery=SELECT 1
  50.  
  51. logging.config=classpath:./logback.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement