選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

configuration.yml.example 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. # 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. # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs)
  98. #
  99. scm_subversion_command:
  100. scm_mercurial_command:
  101. scm_git_command:
  102. scm_cvs_command:
  103. scm_bazaar_command:
  104. scm_darcs_command:
  105. # SCM paths validation.
  106. #
  107. # You can configure a regular expression for each SCM that will be used to
  108. # validate the path of new repositories (eg. path entered by users with the
  109. # "Manage repositories" permission and path returned by reposman.rb).
  110. # The regexp will be wrapped with \A \z, so it must match the whole path.
  111. # And the regexp is case sensitive.
  112. #
  113. # You can match the project identifier by using %project% in the regexp.
  114. #
  115. # You can also set a custom hint message for each SCM that will be displayed
  116. # on the repository form instead of the default one.
  117. #
  118. # Examples:
  119. # scm_subversion_path_regexp: file:///svnpath/[a-z0-9_]+
  120. # scm_subversion_path_info: SVN URL (eg. file:///svnpath/foo)
  121. #
  122. # scm_git_path_regexp: /gitpath/%project%(\.[a-z0-9_])?/
  123. #
  124. scm_subversion_path_regexp:
  125. scm_mercurial_path_regexp:
  126. scm_git_path_regexp:
  127. scm_cvs_path_regexp:
  128. scm_bazaar_path_regexp:
  129. scm_darcs_path_regexp:
  130. scm_filesystem_path_regexp:
  131. # Absolute path to the SCM commands errors (stderr) log file.
  132. # The default is to log in the 'log' directory of your Redmine instance.
  133. # Example:
  134. # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
  135. scm_stderr_log_file:
  136. # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
  137. # If you don't want to enable data encryption, just leave it blank.
  138. # WARNING: losing/changing this key will make encrypted data unreadable.
  139. #
  140. # If you want to encrypt existing passwords in your database:
  141. # * set the cipher key here in your configuration file
  142. # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
  143. #
  144. # If you have encrypted data and want to change this key, you have to:
  145. # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
  146. # * change the cipher key here in your configuration file
  147. # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
  148. database_cipher_key:
  149. # Set this to false to disable plugins' assets mirroring on startup.
  150. # You can use `rake redmine:plugins:assets` to manually mirror assets
  151. # to public/plugin_assets when you install/upgrade a Redmine plugin.
  152. #
  153. #mirror_plugins_assets_on_startup: false
  154. # Your secret key for verifying cookie session data integrity. If you
  155. # change this key, all old sessions will become invalid! Make sure the
  156. # secret is at least 30 characters and all random, no regular words or
  157. # you'll be exposed to dictionary attacks.
  158. #
  159. # If you have a load-balancing Redmine cluster, you have to use the
  160. # same secret token on each machine.
  161. #secret_token: 'change it to a long random string'
  162. # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
  163. # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
  164. #imagemagick_convert_command:
  165. # Configuration of RMagcik font.
  166. #
  167. # Redmine uses RMagcik in order to export gantt png.
  168. # You don't need this setting if you don't install RMagcik.
  169. #
  170. # In CJK (Chinese, Japanese and Korean),
  171. # in order to show CJK characters correctly,
  172. # you need to set this configuration.
  173. #
  174. # Because there is no standard font across platforms in CJK,
  175. # you need to set a font installed in your server.
  176. #
  177. # This setting is not necessary in non CJK.
  178. #
  179. # Examples for Japanese:
  180. # Windows:
  181. # rmagick_font_path: C:\windows\fonts\msgothic.ttc
  182. # Linux:
  183. # rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
  184. #
  185. rmagick_font_path:
  186. # Maximum number of simultaneous AJAX uploads
  187. #max_concurrent_ajax_uploads: 2
  188. # Configure OpenIdAuthentication.store
  189. #
  190. # allowed values: :memory, :file, :memcache
  191. #openid_authentication_store: :memory
  192. # specific configuration options for production environment
  193. # that overrides the default ones
  194. production:
  195. # specific configuration options for development environment
  196. # that overrides the default ones
  197. development: