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 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. #
  9. # == Outgoing email settings (email_delivery setting)
  10. #
  11. # === Common configurations
  12. #
  13. # ==== Sendmail command
  14. #
  15. # production:
  16. # email_delivery:
  17. # delivery_method: :sendmail
  18. #
  19. # ==== Simple SMTP server at localhost
  20. #
  21. # production:
  22. # email_delivery:
  23. # delivery_method: :smtp
  24. # smtp_settings:
  25. # address: "localhost"
  26. # port: 25
  27. #
  28. # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
  29. #
  30. # production:
  31. # email_delivery:
  32. # delivery_method: :smtp
  33. # smtp_settings:
  34. # address: "example.com"
  35. # port: 25
  36. # authentication: :login
  37. # domain: 'foo.com'
  38. # user_name: 'myaccount'
  39. # password: 'password'
  40. #
  41. # ==== SMTP server at example.com using PLAIN authentication
  42. #
  43. # production:
  44. # email_delivery:
  45. # delivery_method: :smtp
  46. # smtp_settings:
  47. # address: "example.com"
  48. # port: 25
  49. # authentication: :plain
  50. # domain: 'example.com'
  51. # user_name: 'myaccount'
  52. # password: 'password'
  53. #
  54. # ==== SMTP server at using TLS (GMail)
  55. #
  56. # This requires some additional configuration. See the article at:
  57. # http://redmineblog.com/articles/setup-redmine-to-send-email-using-gmail/
  58. #
  59. # production:
  60. # email_delivery:
  61. # delivery_method: :smtp
  62. # smtp_settings:
  63. # tls: true
  64. # address: "smtp.gmail.com"
  65. # port: 587
  66. # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
  67. # authentication: :plain
  68. # user_name: "your_email@gmail.com"
  69. # password: "your_password"
  70. #
  71. #
  72. # === More configuration options
  73. #
  74. # See the "Configuration options" at the following website for a list of the
  75. # full options allowed:
  76. #
  77. # http://wiki.rubyonrails.org/rails/pages/HowToSendEmailsWithActionMailer
  78. # default configuration options for all environments
  79. default:
  80. # Outgoing emails configuration (see examples above)
  81. email_delivery:
  82. delivery_method: :smtp
  83. smtp_settings:
  84. address: smtp.example.net
  85. port: 25
  86. domain: example.net
  87. authentication: :login
  88. user_name: "redmine@example.net"
  89. password: "redmine"
  90. # Absolute path to the directory where attachments are stored.
  91. # The default is the 'files' directory in your Redmine instance.
  92. # Your Redmine instance needs to have write permission on this
  93. # directory.
  94. # Examples:
  95. # attachments_storage_path: /var/redmine/files
  96. # attachments_storage_path: D:/redmine/files
  97. attachments_storage_path:
  98. # Configuration of the autologin cookie.
  99. # autologin_cookie_name: the name of the cookie (default: autologin)
  100. # autologin_cookie_path: the cookie path (default: /)
  101. # autologin_cookie_secure: true sets the cookie secure flag (default: false)
  102. autologin_cookie_name:
  103. autologin_cookie_path:
  104. autologin_cookie_secure:
  105. # Configuration of SCM executable command.
  106. #
  107. # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
  108. # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
  109. #
  110. # On Windows + JRuby 1.6.2, path which contains spaces does not work.
  111. # For example, "C:\Program Files\TortoiseHg\hg.exe".
  112. # If you want to this feature, you need to install to the path which does not contains spaces.
  113. # For example, "C:\TortoiseHg\hg.exe".
  114. #
  115. # Examples:
  116. # scm_subversion_command: svn # (default: svn)
  117. # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg)
  118. # scm_git_command: /usr/local/bin/git # (default: git)
  119. # scm_cvs_command: cvs # (default: cvs)
  120. # scm_bazaar_command: bzr.exe # (default: bzr)
  121. # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs)
  122. #
  123. scm_subversion_command:
  124. scm_mercurial_command:
  125. scm_git_command:
  126. scm_cvs_command:
  127. scm_bazaar_command:
  128. scm_darcs_command:
  129. # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
  130. # If you don't want to enable data encryption, just leave it blank.
  131. # WARNING: losing/changing this key will make encrypted data unreadable.
  132. #
  133. # If you want to encrypt existing passwords in your database:
  134. # * set the cipher key here in your configuration file
  135. # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
  136. #
  137. # If you have encrypted data and want to change this key, you have to:
  138. # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
  139. # * change the cipher key here in your configuration file
  140. # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
  141. database_cipher_key:
  142. # specific configuration options for production environment
  143. # that overrides the default ones
  144. production:
  145. # specific configuration options for development environment
  146. # that overrides the default ones
  147. development: