annotate .svn/pristine/1f/1fd3808f19058a6dd60b8c79e61039841f985687.svn-base @ 1519:afce8026aaeb redmine-2.4-integration

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