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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. # = Redmine configuration file
  2. #
  3. # Each environment has its 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 indentation.
  9. # default configuration options for all environments
  10. default:
  11. # Outgoing emails configuration
  12. # See the examples below and the Rails guide for more configuration options:
  13. # http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration
  14. email_delivery:
  15. # ==== Simple SMTP server at localhost
  16. #
  17. # email_delivery:
  18. # delivery_method: :smtp
  19. # smtp_settings:
  20. # address: "localhost"
  21. # port: 25
  22. #
  23. # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
  24. #
  25. # email_delivery:
  26. # delivery_method: :smtp
  27. # smtp_settings:
  28. # address: "example.com"
  29. # port: 25
  30. # authentication: :login
  31. # domain: 'foo.com'
  32. # user_name: 'myaccount'
  33. # password: 'password'
  34. #
  35. # ==== SMTP server at example.com using PLAIN authentication
  36. #
  37. # email_delivery:
  38. # delivery_method: :smtp
  39. # smtp_settings:
  40. # address: "example.com"
  41. # port: 25
  42. # authentication: :plain
  43. # domain: 'example.com'
  44. # user_name: 'myaccount'
  45. # password: 'password'
  46. #
  47. # ==== SMTP server at using TLS (GMail)
  48. # This might require some additional configuration. See the guides at:
  49. # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration
  50. #
  51. # email_delivery:
  52. # delivery_method: :smtp
  53. # smtp_settings:
  54. # enable_starttls_auto: true
  55. # address: "smtp.gmail.com"
  56. # port: 587
  57. # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
  58. # authentication: :plain
  59. # user_name: "your_email@gmail.com"
  60. # password: "your_password"
  61. #
  62. # ==== Sendmail command
  63. #
  64. # email_delivery:
  65. # delivery_method: :sendmail
  66. # Absolute path to the directory where attachments are stored.
  67. # The default is the 'files' directory in your Redmine instance.
  68. # Your Redmine instance needs to have write permission on this
  69. # directory.
  70. # Examples:
  71. # attachments_storage_path: /var/redmine/files
  72. # attachments_storage_path: D:/redmine/files
  73. attachments_storage_path:
  74. # Configuration of the autologin cookie.
  75. # autologin_cookie_name: the name of the cookie (default: autologin)
  76. # autologin_cookie_path: the cookie path (default: /)
  77. # autologin_cookie_secure: true sets the cookie secure flag (default: false)
  78. autologin_cookie_name:
  79. autologin_cookie_path:
  80. autologin_cookie_secure:
  81. # Configuration of SCM executable command.
  82. #
  83. # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
  84. # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
  85. #
  86. # On Windows + JRuby 1.6.2, path which contains spaces does not work.
  87. # For example, "C:\Program Files\TortoiseHg\hg.exe".
  88. # If you want to this feature, you need to install to the path which does not contains spaces.
  89. # For example, "C:\TortoiseHg\hg.exe".
  90. #
  91. # Examples:
  92. # scm_subversion_command: svn # (default: svn)
  93. # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg)
  94. # scm_git_command: /usr/local/bin/git # (default: git)
  95. # scm_cvs_command: cvs # (default: cvs)
  96. # scm_bazaar_command: bzr.exe # (default: bzr)
  97. #
  98. scm_subversion_command:
  99. scm_mercurial_command:
  100. scm_git_command:
  101. scm_cvs_command:
  102. scm_bazaar_command:
  103. # SCM paths validation.
  104. #
  105. # You can configure a regular expression for each SCM that will be used to
  106. # validate the path of new repositories (eg. path entered by users with the
  107. # "Manage repositories" permission and path returned by reposman.rb).
  108. # The regexp will be wrapped with \A \z, so it must match the whole path.
  109. # And the regexp is case sensitive.
  110. #
  111. # You can match the project identifier by using %project% in the regexp.
  112. #
  113. # You can also set a custom hint message for each SCM that will be displayed
  114. # on the repository form instead of the default one.
  115. #
  116. # Examples:
  117. # scm_subversion_path_regexp: file:///svnpath/[a-z0-9_]+
  118. # scm_subversion_path_info: SVN URL (eg. file:///svnpath/foo)
  119. #
  120. # scm_git_path_regexp: /gitpath/%project%(\.[a-z0-9_])?/
  121. #
  122. scm_subversion_path_regexp:
  123. scm_mercurial_path_regexp:
  124. scm_git_path_regexp:
  125. scm_cvs_path_regexp:
  126. scm_bazaar_path_regexp:
  127. scm_filesystem_path_regexp:
  128. # Absolute path to the SCM commands errors (stderr) log file.
  129. # The default is to log in the 'log' directory of your Redmine instance.
  130. # Example:
  131. # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
  132. scm_stderr_log_file:
  133. # Key used to encrypt sensitive data in the database (SCM passwords,
  134. # LDAP passwords, and TOTP (two-factor authentication) secret keys).
  135. # If you don't want to enable data encryption, just leave it blank.
  136. # WARNING: losing/changing this key will make encrypted data unreadable.
  137. #
  138. # If you want to encrypt existing data in your database:
  139. # * set the cipher key here in your configuration file
  140. # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
  141. #
  142. # If you have encrypted data and want to change this key, you have to:
  143. # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
  144. # * change the cipher key here in your configuration file
  145. # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
  146. database_cipher_key:
  147. # Set this to false to disable plugins' assets mirroring on startup.
  148. # You can use `rake redmine:plugins:assets` to manually mirror assets
  149. # to public/plugin_assets when you install/upgrade a Redmine plugin.
  150. #
  151. #mirror_plugins_assets_on_startup: false
  152. # Your secret key for verifying cookie session data integrity. If you
  153. # change this key, all old sessions will become invalid! Make sure the
  154. # secret is at least 30 characters and all random, no regular words or
  155. # you'll be exposed to dictionary attacks.
  156. #
  157. # If you have a load-balancing Redmine cluster, you have to use the
  158. # same secret token on each machine.
  159. #secret_token: 'change it to a long random string'
  160. # Requires users to re-enter their password for sensitive actions (editing
  161. # of account data, project memberships, application settings, user, group,
  162. # role, auth source management and project deletion). Disabled by default.
  163. # Timeout is set in minutes.
  164. #
  165. #sudo_mode: true
  166. #sudo_mode_timeout: 15
  167. # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
  168. # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
  169. #imagemagick_convert_command:
  170. # Absolute path (e.g. /usr/bin/gs, c:/ghostscript/gswin64c.exe) to
  171. # the `gs` binary. Used to generate attachment thumbnails of PDF files.
  172. #gs_command:
  173. # Configuration of MiniMagick font.
  174. #
  175. # Redmine uses MiniMagick in order to export a gantt chart to a PNG image.
  176. # This setting is necessary to properly display CJK (Chinese, Japanese,
  177. # and Korean) characters in the PNG image. Please make sure that the
  178. # specified font is installed in the Redmine server.
  179. #
  180. # This setting is necessary only when CJK characters are used in gantt.
  181. #
  182. # Note that rmagick_font_path in prior to Redmine 4.1.0 has been renamed
  183. # to minimagick_font_path.
  184. #
  185. # Examples for Japanese:
  186. # Windows:
  187. # minimagick_font_path: C:\windows\fonts\msgothic.ttc
  188. # Linux:
  189. # minimagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
  190. #
  191. minimagick_font_path:
  192. # Maximum number of simultaneous AJAX uploads
  193. #max_concurrent_ajax_uploads: 2
  194. # URL of the avatar server
  195. #
  196. # By default, Redmine uses Gravatar as the avatar server for displaying
  197. # user icons. You can switch to another Gravatar-compatible server such
  198. # as Libravatar and opensource servers listed on
  199. # https://wiki.libravatar.org/running_your_own/
  200. #
  201. # URL of each avatar is: #{avatar_server_url}/avatar/#{hash}
  202. #
  203. #avatar_server_url: https://www.gravatar.com # default
  204. #avatar_server_url: https://seccdn.libravatar.org
  205. # Configure CommonMark hardbreaks behaviour
  206. #
  207. # allowed values: true, false
  208. # true: treats regular line break (\n) as hardbreaks
  209. # false: switches to default common mark where two or more spaces are required
  210. # common_mark_enable_hardbreaks: true
  211. # specific configuration options for production environment
  212. # that overrides the default ones
  213. production:
  214. # specific configuration options for development environment
  215. # that overrides the default ones
  216. development: