env.properties 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. ###############################################################################
  2. # lucene.index.base.path <directory path>
  3. #
  4. # The path to a directory that the application will manage the Lucene search
  5. # indices. This directory must allow write access to the user or group the
  6. # application runs as, as it will try to create directories and files here.
  7. lucene.index.base.path=/data/ieat-index
  8. ###############################################################################
  9. # index.update.buff.size <int>
  10. #
  11. # This sets the size of index update buffer, meaning the number of item updates
  12. # that are queued before indexing them in one operation. The larger the number,
  13. # the more efficient updates will be, but the longer it will take for updates
  14. # to show up in search results. Setting this to '1' means the index will be
  15. # updated after every change.
  16. index.update.buffer.size=1
  17. ###############################################################################
  18. # crypto.salt <string>
  19. #
  20. # The "salt" used for encrypting passwords. Set this to a random string of
  21. # characters as desired, but beware the more characters used the longer the
  22. # encrypted passwords will become and they can end up loger than the default
  23. # database column width defined for user passwords. Around 20 characters is a
  24. # good maximum to keep in mind. If you don't want to use any salt then set this
  25. # to an empty value.
  26. crypto.salt=#$8e#&*fJ39eJE(3j#E()
  27. ###############################################################################
  28. # crypto.provider <string>
  29. #
  30. # The JCE provider to use. The default one included with Java is 'SunJCE'.
  31. # Only change this if you want to use a different provider (for example to use
  32. # a different encryption scheme).
  33. crypto.provider=SunJCE
  34. ###############################################################################
  35. # crypto.key.type <string>
  36. #
  37. # The JCE secret key type used for password-based encryption schemes. For
  38. # example: 'PBEWithMD5AndDES'. Also see the crypto.pge.salt property.
  39. crypto.key.type=PBEWithMD5AndDES
  40. ###############################################################################
  41. # crypto.cipher.type <string>
  42. #
  43. # The JCE cipher to use for encryption. For example: 'PBEWithMD5AndDES'
  44. crypto.cipher.type=PBEWithMD5AndDES
  45. ###############################################################################
  46. # crypto.key <string>
  47. #
  48. # The password to use for password-based encryption.
  49. crypto.key=34i.X34U(#*=>jys
  50. ###############################################################################
  51. # crypto.pge.salt <string>
  52. #
  53. # The salt to use for password-based encryption schemes. The encryption
  54. # scheme may have specific length requirements. For example the
  55. # PBEWithMD5AndDES key type requires an 8-byte salt length.
  56. crypto.pbe.salt=|"dk;P~s
  57. ###############################################################################
  58. # smtp.host <inet host>
  59. #
  60. # The SMTP server to use for sending mail messages to.
  61. smtp.host=localhost
  62. ###############################################################################
  63. # mail.from <email>
  64. #
  65. # The email address to send mail from.
  66. mail.from=ieat@localhost.local
  67. ###############################################################################
  68. # url.registration.confirm <url>
  69. #
  70. # The relative URL to confirm an account registration. This URL should inlcude
  71. # two variables: $[user.login] to hold the login of the user being confirmed,
  72. # and $[result] for the confirmation code. For example:
  73. # '/confirmAccount.do?login=$[user.login]&amp;code=$[result]'. If you set up
  74. # an Apache rewrite rule, you can shorten this URL, for example
  75. # '/confirm/$[user.login]/$[result]'.
  76. url.registration.confirm=/confirmAccount.do?login=$[user.login]&code=$[result]
  77. ###############################################################################
  78. # url.welcome <url>
  79. #
  80. # The relative URL to use in the welcome email template. Typically this will
  81. # just be the home page.
  82. url.welcome=/home.do
  83. ###############################################################################
  84. # url.welcome <url>
  85. #
  86. # The relative URL to use in the welcome email template. Typically this will
  87. # just be the home page.
  88. ###############################################################################
  89. # hibernate.dialect <Hibernite dialect>
  90. #
  91. # The Hibernate dialect to use. For PostgreSQL:
  92. #
  93. # org.hibernate.dialect.PostgreSQLDialect
  94. #
  95. # For MySQL:
  96. #
  97. # org.hibernate.dialect.MySQLDialect
  98. hibernate.dialect=org.hibernate.dialect.MySQLDialect
  99. ###############################################################################
  100. # hibernate.show_sql <true|false>
  101. #
  102. # Set to 'true' to enable SQL debugging. Otherwise set to 'false'.
  103. hibernate.show_sql=false