You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

configuration.yml.example 7.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. # = Redmine configuration file
  2. #
  3. # Each environment has it's own configuration options. If you are only
  4. # running in production, only the production block needs to be configured.
  5. # Environment specific configuration options override the default ones.
  6. #
  7. # Note that this file needs to be a valid YAML file.
  8. # DO NOT USE TABS! Use 2 spaces instead of tabs for identation.
  9. #
  10. # == Outgoing email settings (email_delivery setting)
  11. #
  12. # === Common configurations
  13. #
  14. # ==== Sendmail command
  15. #
  16. # production:
  17. # email_delivery:
  18. # delivery_method: :sendmail
  19. #
  20. # ==== Simple SMTP server at localhost
  21. #
  22. # production:
  23. # email_delivery:
  24. # delivery_method: :smtp
  25. # smtp_settings:
  26. # address: "localhost"
  27. # port: 25
  28. #
  29. # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
  30. #
  31. # production:
  32. # email_delivery:
  33. # delivery_method: :smtp
  34. # smtp_settings:
  35. # address: "example.com"
  36. # port: 25
  37. # authentication: :login
  38. # domain: 'foo.com'
  39. # user_name: 'myaccount'
  40. # password: 'password'
  41. #
  42. # ==== SMTP server at example.com using PLAIN authentication
  43. #
  44. # production:
  45. # email_delivery:
  46. # delivery_method: :smtp
  47. # smtp_settings:
  48. # address: "example.com"
  49. # port: 25
  50. # authentication: :plain
  51. # domain: 'example.com'
  52. # user_name: 'myaccount'
  53. # password: 'password'
  54. #
  55. # ==== SMTP server at using TLS (GMail)
  56. #
  57. # This might require some additional configuration. See the guides at:
  58. # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration
  59. #
  60. # production:
  61. # email_delivery:
  62. # delivery_method: :smtp
  63. # smtp_settings:
  64. # enable_starttls_auto: true
  65. # address: "smtp.gmail.com"
  66. # port: 587
  67. # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
  68. # authentication: :plain
  69. # user_name: "your_email@gmail.com"
  70. # password: "your_password"
  71. #
  72. #
  73. # === More configuration options
  74. #
  75. # See the "Configuration options" at the following website for a list of the
  76. # full options allowed:
  77. #
  78. # http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer
  79. # default configuration options for all environments
  80. default:
  81. # Outgoing emails configuration (see examples above)
  82. email_delivery:
  83. delivery_method: :smtp
  84. smtp_settings:
  85. address: smtp.example.net
  86. port: 25
  87. domain: example.net
  88. authentication: :login
  89. user_name: "redmine@example.net"
  90. password: "redmine"
  91. # Absolute path to the directory where attachments are stored.
  92. # The default is the 'files' directory in your Redmine instance.
  93. # Your Redmine instance needs to have write permission on this
  94. # directory.
  95. # Examples:
  96. # attachments_storage_path: /var/redmine/files
  97. # attachments_storage_path: D:/redmine/files
  98. attachments_storage_path:
  99. # Configuration of the autologin cookie.
  100. # autologin_cookie_name: the name of the cookie (default: autologin)
  101. # autologin_cookie_path: the cookie path (default: /)
  102. # autologin_cookie_secure: true sets the cookie secure flag (default: false)
  103. autologin_cookie_name:
  104. autologin_cookie_path:
  105. autologin_cookie_secure:
  106. # Configuration of SCM executable command.
  107. #
  108. # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
  109. # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
  110. #
  111. # On Windows + JRuby 1.6.2, path which contains spaces does not work.
  112. # For example, "C:\Program Files\TortoiseHg\hg.exe".
  113. # If you want to this feature, you need to install to the path which does not contains spaces.
  114. # For example, "C:\TortoiseHg\hg.exe".
  115. #
  116. # Examples:
  117. # scm_subversion_command: svn # (default: svn)
  118. # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg)
  119. # scm_git_command: /usr/local/bin/git # (default: git)
  120. # scm_cvs_command: cvs # (default: cvs)
  121. # scm_bazaar_command: bzr.exe # (default: bzr)
  122. # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs)
  123. #
  124. scm_subversion_command:
  125. scm_mercurial_command:
  126. scm_git_command:
  127. scm_cvs_command:
  128. scm_bazaar_command:
  129. scm_darcs_command:
  130. # Absolute path to the SCM commands errors (stderr) log file.
  131. # The default is to log in the 'log' directory of your Redmine instance.
  132. # Example:
  133. # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
  134. scm_stderr_log_file:
  135. # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
  136. # If you don't want to enable data encryption, just leave it blank.
  137. # WARNING: losing/changing this key will make encrypted data unreadable.
  138. #
  139. # If you want to encrypt existing passwords in your database:
  140. # * set the cipher key here in your configuration file
  141. # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
  142. #
  143. # If you have encrypted data and want to change this key, you have to:
  144. # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
  145. # * change the cipher key here in your configuration file
  146. # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
  147. database_cipher_key:
  148. # Set this to false to disable plugins' assets mirroring on startup.
  149. # You can use `rake redmine:plugins:assets` to manually mirror assets
  150. # to public/plugin_assets when you install/upgrade a Redmine plugin.
  151. #
  152. #mirror_plugins_assets_on_startup: false
  153. # Your secret key for verifying cookie session data integrity. If you
  154. # change this key, all old sessions will become invalid! Make sure the
  155. # secret is at least 30 characters and all random, no regular words or
  156. # you'll be exposed to dictionary attacks.
  157. #
  158. # If you have a load-balancing Redmine cluster, you have to use the
  159. # same secret token on each machine.
  160. #secret_token: 'change it to a long random string'
  161. # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
  162. # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
  163. #imagemagick_convert_command:
  164. # Configuration of RMagcik font.
  165. #
  166. # Redmine uses RMagcik in order to export gantt png.
  167. # You don't need this setting if you don't install RMagcik.
  168. #
  169. # In CJK (Chinese, Japanese and Korean),
  170. # in order to show CJK characters correctly,
  171. # you need to set this configuration.
  172. #
  173. # Because there is no standard font across platforms in CJK,
  174. # you need to set a font installed in your server.
  175. #
  176. # This setting is not necessary in non CJK.
  177. #
  178. # Examples for Japanese:
  179. # Windows:
  180. # rmagick_font_path: C:\windows\fonts\msgothic.ttc
  181. # Linux:
  182. # rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
  183. #
  184. rmagick_font_path:
  185. # Maximum number of simultaneous AJAX uploads
  186. #max_concurrent_ajax_uploads: 2
  187. # Configure OpenIdAuthentication.store
  188. #
  189. # allowed values: :memory, :file, :memcache
  190. #openid_authentication_store: :memory
  191. # specific configuration options for production environment
  192. # that overrides the default ones
  193. production:
  194. # specific configuration options for development environment
  195. # that overrides the default ones
  196. development: