Redmine 4.1.1
This commit is contained in:
parent
33e7b881a5
commit
3d976f1b3b
1593 changed files with 36180 additions and 19489 deletions
|
@ -1,11 +1,11 @@
|
|||
# = Redmine configuration file
|
||||
#
|
||||
# Each environment has it's own configuration options. If you are only
|
||||
# Each environment has its own configuration options. If you are only
|
||||
# running in production, only the production block needs to be configured.
|
||||
# Environment specific configuration options override the default ones.
|
||||
#
|
||||
# Note that this file needs to be a valid YAML file.
|
||||
# DO NOT USE TABS! Use 2 spaces instead of tabs for identation.
|
||||
# DO NOT USE TABS! Use 2 spaces instead of tabs for indentation.
|
||||
|
||||
# default configuration options for all environments
|
||||
default:
|
||||
|
@ -99,14 +99,12 @@ default:
|
|||
# scm_git_command: /usr/local/bin/git # (default: git)
|
||||
# scm_cvs_command: cvs # (default: cvs)
|
||||
# scm_bazaar_command: bzr.exe # (default: bzr)
|
||||
# scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs)
|
||||
#
|
||||
scm_subversion_command:
|
||||
scm_mercurial_command:
|
||||
scm_git_command:
|
||||
scm_cvs_command:
|
||||
scm_bazaar_command:
|
||||
scm_darcs_command:
|
||||
|
||||
# SCM paths validation.
|
||||
#
|
||||
|
@ -132,7 +130,6 @@ default:
|
|||
scm_git_path_regexp:
|
||||
scm_cvs_path_regexp:
|
||||
scm_bazaar_path_regexp:
|
||||
scm_darcs_path_regexp:
|
||||
scm_filesystem_path_regexp:
|
||||
|
||||
# Absolute path to the SCM commands errors (stderr) log file.
|
||||
|
@ -182,27 +179,25 @@ default:
|
|||
# the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
|
||||
#imagemagick_convert_command:
|
||||
|
||||
# Configuration of RMagick font.
|
||||
# Configuration of MiniMagick font.
|
||||
#
|
||||
# Redmine uses RMagick in order to export gantt png.
|
||||
# You don't need this setting if you don't install RMagick.
|
||||
# Redmine uses MiniMagick in order to export a gantt chart to a PNG image.
|
||||
# This setting is necessary to properly display CJK (Chinese, Japanese,
|
||||
# and Korean) characters in the PNG image. Please make sure that the
|
||||
# specified font is installed in the Redmine server.
|
||||
#
|
||||
# In CJK (Chinese, Japanese and Korean),
|
||||
# in order to show CJK characters correctly,
|
||||
# you need to set this configuration.
|
||||
# This setting is necessary only when CJK characters are used in gantt.
|
||||
#
|
||||
# Because there is no standard font across platforms in CJK,
|
||||
# you need to set a font installed in your server.
|
||||
#
|
||||
# This setting is not necessary in non CJK.
|
||||
# Note that rmagick_font_path in prior to Redmine 4.1.0 has been renamed
|
||||
# to minimagick_font_path.
|
||||
#
|
||||
# Examples for Japanese:
|
||||
# Windows:
|
||||
# rmagick_font_path: C:\windows\fonts\msgothic.ttc
|
||||
# minimagick_font_path: C:\windows\fonts\msgothic.ttc
|
||||
# Linux:
|
||||
# rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
|
||||
# minimagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
|
||||
#
|
||||
rmagick_font_path:
|
||||
minimagick_font_path:
|
||||
|
||||
# Maximum number of simultaneous AJAX uploads
|
||||
#max_concurrent_ajax_uploads: 2
|
||||
|
@ -212,6 +207,18 @@ default:
|
|||
# allowed values: :memory, :file, :memcache
|
||||
#openid_authentication_store: :memory
|
||||
|
||||
# URL of the avatar server
|
||||
#
|
||||
# By default, Redmine uses Gravatar as the avatar server for displaying
|
||||
# user icons. You can switch to another Gravatar-compatible server such
|
||||
# as Libravatar and opensource servers listed on
|
||||
# https://wiki.libravatar.org/running_your_own/
|
||||
#
|
||||
# URL of each avatar is: #{avatar_server_url}/avatar/#{hash}
|
||||
#
|
||||
#avatar_server_url: https://www.gravatar.com # default
|
||||
#avatar_server_url: https://seccdn.libravatar.org
|
||||
|
||||
# specific configuration options for production environment
|
||||
# that overrides the default ones
|
||||
production:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue