Chris@1516: # = Redmine configuration file Chris@1516: # Chris@1516: # Each environment has it's own configuration options. If you are only Chris@1516: # running in production, only the production block needs to be configured. Chris@1516: # Environment specific configuration options override the default ones. Chris@1516: # Chris@1516: # Note that this file needs to be a valid YAML file. Chris@1516: # DO NOT USE TABS! Use 2 spaces instead of tabs for identation. Chris@1516: # Chris@1516: # == Outgoing email settings (email_delivery setting) Chris@1516: # Chris@1516: # === Common configurations Chris@1516: # Chris@1516: # ==== Sendmail command Chris@1516: # Chris@1516: # production: Chris@1516: # email_delivery: Chris@1516: # delivery_method: :sendmail Chris@1516: # Chris@1516: # ==== Simple SMTP server at localhost Chris@1516: # Chris@1516: # production: Chris@1516: # email_delivery: Chris@1516: # delivery_method: :smtp Chris@1516: # smtp_settings: Chris@1516: # address: "localhost" Chris@1516: # port: 25 Chris@1516: # Chris@1516: # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com Chris@1516: # Chris@1516: # production: Chris@1516: # email_delivery: Chris@1516: # delivery_method: :smtp Chris@1516: # smtp_settings: Chris@1516: # address: "example.com" Chris@1516: # port: 25 Chris@1516: # authentication: :login Chris@1516: # domain: 'foo.com' Chris@1516: # user_name: 'myaccount' Chris@1516: # password: 'password' Chris@1516: # Chris@1516: # ==== SMTP server at example.com using PLAIN authentication Chris@1516: # Chris@1516: # production: Chris@1516: # email_delivery: Chris@1516: # delivery_method: :smtp Chris@1516: # smtp_settings: Chris@1516: # address: "example.com" Chris@1516: # port: 25 Chris@1516: # authentication: :plain Chris@1516: # domain: 'example.com' Chris@1516: # user_name: 'myaccount' Chris@1516: # password: 'password' Chris@1516: # Chris@1516: # ==== SMTP server at using TLS (GMail) Chris@1516: # Chris@1516: # This might require some additional configuration. See the guides at: Chris@1516: # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration Chris@1516: # Chris@1516: # production: Chris@1516: # email_delivery: Chris@1516: # delivery_method: :smtp Chris@1516: # smtp_settings: Chris@1516: # enable_starttls_auto: true Chris@1516: # address: "smtp.gmail.com" Chris@1516: # port: 587 Chris@1516: # domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps Chris@1516: # authentication: :plain Chris@1516: # user_name: "your_email@gmail.com" Chris@1516: # password: "your_password" Chris@1516: # Chris@1516: # Chris@1516: # === More configuration options Chris@1516: # Chris@1516: # See following page: Chris@1516: # Chris@1516: # http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration Chris@1516: Chris@1516: Chris@1516: # default configuration options for all environments Chris@1516: default: Chris@1516: # Outgoing emails configuration (see examples above) Chris@1516: email_delivery: Chris@1516: delivery_method: :smtp Chris@1516: smtp_settings: Chris@1516: address: smtp.example.net Chris@1516: port: 25 Chris@1516: domain: example.net Chris@1516: authentication: :login Chris@1516: user_name: "redmine@example.net" Chris@1516: password: "redmine" Chris@1516: Chris@1516: # Absolute path to the directory where attachments are stored. Chris@1516: # The default is the 'files' directory in your Redmine instance. Chris@1516: # Your Redmine instance needs to have write permission on this Chris@1516: # directory. Chris@1516: # Examples: Chris@1516: # attachments_storage_path: /var/redmine/files Chris@1516: # attachments_storage_path: D:/redmine/files Chris@1516: attachments_storage_path: Chris@1516: Chris@1516: # Configuration of the autologin cookie. Chris@1516: # autologin_cookie_name: the name of the cookie (default: autologin) Chris@1516: # autologin_cookie_path: the cookie path (default: /) Chris@1516: # autologin_cookie_secure: true sets the cookie secure flag (default: false) Chris@1516: autologin_cookie_name: Chris@1516: autologin_cookie_path: Chris@1516: autologin_cookie_secure: Chris@1516: Chris@1516: # Configuration of SCM executable command. Chris@1516: # Chris@1516: # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe) Chris@1516: # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work. Chris@1516: # Chris@1516: # On Windows + JRuby 1.6.2, path which contains spaces does not work. Chris@1516: # For example, "C:\Program Files\TortoiseHg\hg.exe". Chris@1516: # If you want to this feature, you need to install to the path which does not contains spaces. Chris@1516: # For example, "C:\TortoiseHg\hg.exe". Chris@1516: # Chris@1516: # Examples: Chris@1516: # scm_subversion_command: svn # (default: svn) Chris@1516: # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg) Chris@1516: # scm_git_command: /usr/local/bin/git # (default: git) Chris@1516: # scm_cvs_command: cvs # (default: cvs) Chris@1516: # scm_bazaar_command: bzr.exe # (default: bzr) Chris@1516: # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs) Chris@1516: # Chris@1516: scm_subversion_command: Chris@1516: scm_mercurial_command: Chris@1516: scm_git_command: Chris@1516: scm_cvs_command: Chris@1516: scm_bazaar_command: Chris@1516: scm_darcs_command: Chris@1516: Chris@1516: # Absolute path to the SCM commands errors (stderr) log file. Chris@1516: # The default is to log in the 'log' directory of your Redmine instance. Chris@1516: # Example: Chris@1516: # scm_stderr_log_file: /var/log/redmine_scm_stderr.log Chris@1516: scm_stderr_log_file: Chris@1516: Chris@1516: # Key used to encrypt sensitive data in the database (SCM and LDAP passwords). Chris@1516: # If you don't want to enable data encryption, just leave it blank. Chris@1516: # WARNING: losing/changing this key will make encrypted data unreadable. Chris@1516: # Chris@1516: # If you want to encrypt existing passwords in your database: Chris@1516: # * set the cipher key here in your configuration file Chris@1516: # * encrypt data using 'rake db:encrypt RAILS_ENV=production' Chris@1516: # Chris@1516: # If you have encrypted data and want to change this key, you have to: Chris@1516: # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first Chris@1516: # * change the cipher key here in your configuration file Chris@1516: # * encrypt data using 'rake db:encrypt RAILS_ENV=production' Chris@1516: database_cipher_key: Chris@1516: Chris@1516: # Set this to false to disable plugins' assets mirroring on startup. Chris@1516: # You can use `rake redmine:plugins:assets` to manually mirror assets Chris@1516: # to public/plugin_assets when you install/upgrade a Redmine plugin. Chris@1516: # Chris@1516: #mirror_plugins_assets_on_startup: false Chris@1516: Chris@1516: # Your secret key for verifying cookie session data integrity. If you Chris@1516: # change this key, all old sessions will become invalid! Make sure the Chris@1516: # secret is at least 30 characters and all random, no regular words or Chris@1516: # you'll be exposed to dictionary attacks. Chris@1516: # Chris@1516: # If you have a load-balancing Redmine cluster, you have to use the Chris@1516: # same secret token on each machine. Chris@1516: #secret_token: 'change it to a long random string' Chris@1516: Chris@1516: # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to Chris@1516: # the ImageMagick's `convert` binary. Used to generate attachment thumbnails. Chris@1516: #imagemagick_convert_command: Chris@1516: Chris@1516: # Configuration of RMagcik font. Chris@1516: # Chris@1516: # Redmine uses RMagcik in order to export gantt png. Chris@1516: # You don't need this setting if you don't install RMagcik. Chris@1516: # Chris@1516: # In CJK (Chinese, Japanese and Korean), Chris@1516: # in order to show CJK characters correctly, Chris@1516: # you need to set this configuration. Chris@1516: # Chris@1516: # Because there is no standard font across platforms in CJK, Chris@1516: # you need to set a font installed in your server. Chris@1516: # Chris@1516: # This setting is not necessary in non CJK. Chris@1516: # Chris@1516: # Examples for Japanese: Chris@1516: # Windows: Chris@1516: # rmagick_font_path: C:\windows\fonts\msgothic.ttc Chris@1516: # Linux: Chris@1516: # rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf Chris@1516: # Chris@1516: rmagick_font_path: Chris@1516: Chris@1516: # Maximum number of simultaneous AJAX uploads Chris@1516: #max_concurrent_ajax_uploads: 2 Chris@1516: Chris@1516: # Configure OpenIdAuthentication.store Chris@1516: # Chris@1516: # allowed values: :memory, :file, :memcache Chris@1516: #openid_authentication_store: :memory Chris@1516: Chris@1516: # specific configuration options for production environment Chris@1516: # that overrides the default ones Chris@1516: production: Chris@1516: Chris@1516: # specific configuration options for development environment Chris@1516: # that overrides the default ones Chris@1516: development: