Advertisement
Guest User

Untitled

a guest
Jan 9th, 2018
567
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.48 KB | None | 0 0
  1. # ===============================
  2. # = LOGGING
  3. # ===============================
  4. logging.level.root=ERROR
  5. logging.level.org.springframework.web=ERROR
  6. logging.level.org.hibernate=ERROR
  7. logging.level.com.diplomtime=DEBUG
  8. logging.file=errors.log
  9.  
  10. spring.profiles.active=default
  11.  
  12. # ===============================
  13. # = DATA SOURCE
  14. # ===============================
  15.  
  16. # Set here configurations for the database connection
  17.  
  18. # Connection url for the database "netgloo_blog"
  19. spring.datasource.url = jdbc:postgresql://localhost:5433/jkoliadb
  20.  
  21. # Username and password
  22. spring.datasource.username = postgres
  23. spring.datasource.password = 123
  24. spring.jpa.properties.hibernate.default_schema=public
  25.  
  26.  
  27. # Keep the connection alive if idle for a long time (needed in production)
  28. spring.datasource.testWhileIdle = true
  29. spring.datasource.validationQuery = SELECT 1
  30.  
  31. # Telegram Bot params
  32. #curl -F "url=https://telegram.diplomtime.com" "https://api.telegram.org/bot226013927:AAGgTMd0U1-R7RBnjD38g_juon_PB4kLGqM/setWebhook"
  33. intex.telegram.name = DefaultBot
  34. intex.telegram.token = this_is_demo_token12345
  35. intex.telegram.path=https://telegram.diplomtime.com
  36. intex.email.from=no-reply@diplomtime.com
  37. intex.cabinet.client.path=https://client.diplomtime.com
  38. intex.cabinet.author.path=https://author.diplomtime.com
  39. intex.cabinet.manager.path=https://manager.diplomtime.com
  40. intex.gag.email.to=test@mail.mom
  41.  
  42. # Asterisk connection config
  43. asterisk.hostname=192.168.0.3
  44. asterisk.port=5038
  45. asterisk.username=odoo
  46. asterisk.password=odoo
  47. asterisk.context=from-internal
  48.  
  49. # ===============================
  50. # = JPA / HIBERNATE
  51. # ===============================
  52.  
  53. # Use spring.jpa.properties.* for Hibernate native properties (the prefix is
  54. # stripped before adding them to the entity manager).
  55.  
  56. # Show or not log for each sql query
  57. spring.jpa.show-sql = true
  58.  
  59. # Hibernate ddl auto (create, create-drop, update): with "update" the database
  60. # schema will be automatically updated accordingly to java entities found in
  61. # the project
  62. spring.jpa.hibernate.ddl-auto=update
  63. 400685
  64. # Naming strategy
  65. # spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
  66.  
  67. # Allows Hibernate to generate SQL optimized for a particular DBMS
  68. spring.jpa.properties.hibernate.dialect=com.diplomtime.config.HQLPostgresExtendsDialect
  69. spring.jpa.properties.hibernate.current_session_context_class=org.springframework.orm.hibernate4.SpringSessionContext
  70.  
  71. # ===============================
  72. # = ACTIVITI
  73. # ===============================
  74. spring.activiti.databaseSchema=public
  75.  
  76. jkolia.yd.user=disk@diplomtime.ru
  77. jkolia.yd.token=d77010b922164510a9af8d5013ee29d4
  78. jkolia.yd.folder=jkolia
  79. jkolia.files_dir=/home/vitaly/uploads
  80. jkolia.files.storage-type=YANDEX
  81.  
  82. #rabbit connection settings
  83. jkolia.rabbit.ip=localhost
  84. jkolia.rabbit.user=jkoliarabbit
  85. jkolia.rabbit.password=123
  86.  
  87. # rabbit queu
  88. jkolia.queue.1c.payments.new=jkolia.dev.1C.payments.new
  89. jkolia.queue.1c.payments.mod=jkolia.dev.1C.payments.mod
  90. jkolia.queue.1c.payments.del=jkolia.dev.1C.payments.del
  91. jkolia.queue.odoo.order_moves=jkolia.dev.odoo.order_moves
  92. jkolia.queue.odoo.order_data=jkolia.dev.odoo.order_data
  93. jkolia.queue.orders=jkolia.dev.orders
  94. jkolia.exchange.odoo.orders=dtcom.orders
  95. jkolia.queue.margaritka=jkolia.dev.margaritka
  96. jkolia.exchange.tasks.requests=tasks.requests
  97. jkolia.queue.tasks.responses=jkolia.tasks.responses
  98.  
  99.  
  100. #email priority
  101.  
  102. email.priority.lite=EMAIL
  103. email.priority.important=MAILGUN
  104.  
  105. spring.http.multipart.maxFileSize=100Mb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement