Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. # H2 example (default)
  2.  
  3. #datasource.driver=org.h2.Driver
  4. #datasource.url=jdbc:h2:tcp://localhost/flowable
  5. #datasource.url=jdbc:h2:mem:flowable;DB_CLOSE_DELAY=-1
  6.  
  7. #datasource.driver=com.mysql.jdbc.Driver
  8. #datasource.url=jdbc:mysql://127.0.0.1:3306/flowable?characterEncoding=UTF-8
  9.  
  10. datasource.driver=org.postgresql.Driver
  11. datasource.url=jdbc:postgresql://localhost:5432/flowable
  12.  
  13. #datasource.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
  14. #datasource.url=jdbc:sqlserver://localhost:1433;databaseName=flowable
  15.  
  16. #datasource.driver=oracle.jdbc.driver.OracleDriver
  17. #datasource.url=jdbc:oracle:thin:@localhost:1521:flowable
  18.  
  19. #datasource.driver=com.ibm.db2.jcc.DB2Driver
  20. #datasource.url=jdbc:db2://localhost:50000/flowable
  21.  
  22. datasource.username=flowable
  23. datasource.password=flowable
  24.  
  25. # JNDI CONFIG
  26.  
  27. # If uncommented, the datasource will be looked up using the configured JNDI name.
  28. # This will have preference over any datasource configuration done below that doesn't use JNDI
  29. #
  30. # Eg for JBoss: java:jboss/datasources/flowableDS
  31. #
  32. #datasource.jndi.name=jdbc/flowableDS
  33.  
  34. # Set whether the lookup occurs in a J2EE container, i.e. if the prefix "java:comp/env/" needs to be added if the JNDI
  35. # name doesn't already contain it. Default is "true".
  36. #datasource.jndi.resourceRef=true
  37.  
  38. #
  39. # Connection pool (see http://www.mchange.com/projects/c3p0/#configuration)
  40. #
  41.  
  42. #datasource.min-pool-size=5
  43. #datasource.max-pool-size=100
  44. #datasource.acquire-increment=5
  45. # test query for H2, MySQL, PostgreSQL and Microsoft SQL Server
  46. #datasource.preferred-test-query=select 1
  47. # test query for Oracle
  48. #datasource.preferred-test-query=SELECT 1 FROM DUAL
  49. # test query for DB2
  50. #datasource.preferred-test-query=SELECT current date FROM sysibm.sysdummy1
  51. #datasource.test-connection-on-checkin=true
  52. #datasource.test-connection-on-checkout=true
  53. #datasource.max-idle-time=1800
  54. #datasource.max-idle-time-excess-connections=1800
  55.  
  56. # Default REST endpoint configs
  57. #
  58. # Process engine
  59. rest.process.app.name=Flowable Process app
  60. rest.process.app.description=Flowable Process REST config
  61. rest.process.app.host=http://localhost
  62. rest.process.app.port=8080
  63. rest.process.app.contextroot=flowable-task
  64. rest.process.app.restroot=process-api
  65. rest.process.app.user=admin
  66. rest.process.app.password=test
  67.  
  68. # DMN engine
  69. rest.dmn.app.name=Flowable DMN app
  70. rest.dmn.app.description=Flowable DMN REST config
  71. rest.dmn.app.host=http://localhost
  72. rest.dmn.app.port=8080
  73. rest.dmn.app.contextroot=flowable-task
  74. rest.dmn.app.restroot=dmn-api
  75. rest.dmn.app.user=admin
  76. rest.dmn.app.password=test
  77.  
  78. # Form engine
  79. rest.form.app.name=Flowable Form app
  80. rest.form.app.description=Flowable Form REST config
  81. rest.form.app.host=http://localhost
  82. rest.form.app.port=8080
  83. rest.form.app.contextroot=flowable-task
  84. rest.form.app.restroot=form-api
  85. rest.form.app.user=admin
  86. rest.form.app.password=test
  87.  
  88. # Content engine
  89. rest.content.app.name=Flowable Content app
  90. rest.content.app.description=Flowable Content REST config
  91. rest.content.app.host=http://localhost
  92. rest.content.app.port=8080
  93. rest.content.app.contextroot=flowable-task
  94. rest.content.app.restroot=content-api
  95. rest.content.app.user=admin
  96. rest.content.app.password=test
  97.  
  98. # Passwords for rest endpoints and master configs are stored encrypted in the database using AES/CBC/PKCS5PADDING
  99. # It needs a 128-bit initialization vector (http://en.wikipedia.org/wiki/Initialization_vector)
  100. # and a 128-bit secret key represented as 16 ascii characters below
  101. #
  102. # Do note that if these properties are changed after passwords have been saved, all existing passwords
  103. # will not be able to be decrypted and the password would need to be reset in the UI.
  104. security.encryption.credentialsIVSpec=j8kdO2hejA9lKmm6
  105. security.encryption.credentialsSecretSpec=9FGl73ngxcOoJvmL
  106.  
  107. idm.app.url=http://localhost:8080/flowable-idm
  108.  
  109. idm.admin.user=admin
  110. idm.admin.password=test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement