Project

General

Profile

configure freebsd+redmine+subversion » configuration.yml.txt

Роман Лебедев, 2014-11-16 20:21

 
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

    
10
# default configuration options for all environments
11
default:
12
  # Outgoing emails configuration
13
  # See the examples below and the Rails guide for more configuration options:
14
  # http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration
15
  email_delivery:
16

    
17
  # ==== Simple SMTP server at localhost
18
  #
19
  #  email_delivery:
20
  #    delivery_method: :smtp
21
  #    smtp_settings:
22
  #      address: "localhost"
23
  #      port: 25
24
  #
25
  # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
26
  #
27
  #  email_delivery:
28
  #    delivery_method: :smtp
29
  #    smtp_settings:
30
  #      address: "example.com"
31
  #      port: 25
32
  #      authentication: :login
33
  #      domain: 'foo.com'
34
  #      user_name: 'myaccount'
35
  #      password: 'password'
36
  #
37
  # ==== SMTP server at example.com using PLAIN authentication
38
  #
39
  #  email_delivery:
40
  #    delivery_method: :smtp
41
  #    smtp_settings:
42
  #      address: "example.com"
43
  #      port: 25
44
  #      authentication: :plain
45
  #      domain: 'example.com'
46
  #      user_name: 'myaccount'
47
  #      password: 'password'
48
  #
49
  # ==== SMTP server at using TLS (GMail)
50
  # This might require some additional configuration. See the guides at:
51
  # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration
52
  #
53
  #  email_delivery:
54
  #    delivery_method: :smtp
55
  #    smtp_settings:
56
  #      enable_starttls_auto: true
57
  #      address: "smtp.gmail.com"
58
  #      port: 587
59
  #      domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
60
  #      authentication: :plain
61
  #      user_name: "your_email@gmail.com"
62
  #      password: "your_password"
63
  #
64
  # ==== Sendmail command
65
  #
66
  #  email_delivery:
67
  #    delivery_method: :sendmail
68

    
69
  # Absolute path to the directory where attachments are stored.
70
  # The default is the 'files' directory in your Redmine instance.
71
  # Your Redmine instance needs to have write permission on this
72
  # directory.
73
  # Examples:
74
 #attachments_storage_path: /disk2/www/subversion
75
  # attachments_storage_path: D:/redmine/files
76
  attachments_storage_path:
77

    
78
  # Configuration of the autologin cookie.
79
  # autologin_cookie_name: the name of the cookie (default: autologin)
80
  # autologin_cookie_path: the cookie path (default: /)
81
  # autologin_cookie_secure: true sets the cookie secure flag (default: false)
82
  autologin_cookie_name:
83
  autologin_cookie_path:
84
  autologin_cookie_secure:
85

    
86
  # Configuration of SCM executable command.
87
  #
88
  # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
89
  # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
90
  #
91
  # On Windows + JRuby 1.6.2, path which contains spaces does not work.
92
  # For example, "C:\Program Files\TortoiseHg\hg.exe".
93
  # If you want to this feature, you need to install to the path which does not contains spaces.
94
  # For example, "C:\TortoiseHg\hg.exe".
95
  #
96
  # Examples:
97
  # scm_subversion_command: svn                                       # (default: svn)
98
  # scm_mercurial_command:  C:\Program Files\TortoiseHg\hg.exe        # (default: hg)
99
  # scm_git_command:        /usr/local/bin/git                        # (default: git)
100
  # scm_cvs_command:        cvs                                       # (default: cvs)
101
  # scm_bazaar_command:     bzr.exe                                   # (default: bzr)
102
  # scm_darcs_command:      darcs-1.0.9-i386-linux                    # (default: darcs)
103
  #
104
#  scm_subversion_command: svn
105
#  scm_mercurial_command:
106
 # scm_git_command:
107
 # scm_cvs_command:
108
 # scm_bazaar_command:
109
 # scm_darcs_command:
110

    
111
  # Absolute path to the SCM commands errors (stderr) log file.
112
  # The default is to log in the 'log' directory of your Redmine instance.
113
  # Example:
114
  # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
115
  scm_stderr_log_file:
116

    
117
  # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
118
  # If you don't want to enable data encryption, just leave it blank.
119
  # WARNING: losing/changing this key will make encrypted data unreadable.
120
  #
121
  # If you want to encrypt existing passwords in your database:
122
  # * set the cipher key here in your configuration file
123
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
124
  #
125
  # If you have encrypted data and want to change this key, you have to:
126
  # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
127
  # * change the cipher key here in your configuration file
128
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
129
  database_cipher_key:
130

    
131
  # Set this to false to disable plugins' assets mirroring on startup.
132
  # You can use `rake redmine:plugins:assets` to manually mirror assets
133
  # to public/plugin_assets when you install/upgrade a Redmine plugin.
134
  #
135
  #mirror_plugins_assets_on_startup: false
136

    
137
  # Your secret key for verifying cookie session data integrity. If you
138
  # change this key, all old sessions will become invalid! Make sure the
139
  # secret is at least 30 characters and all random, no regular words or
140
  # you'll be exposed to dictionary attacks.
141
  #
142
  # If you have a load-balancing Redmine cluster, you have to use the
143
  # same secret token on each machine.
144
  #secret_token: 'change it to a long random string'
145

    
146
  # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
147
  # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
148
  #imagemagick_convert_command:
149

    
150
  # Configuration of RMagcik font.
151
  #
152
  # Redmine uses RMagcik in order to export gantt png.
153
  # You don't need this setting if you don't install RMagcik.
154
  #
155
  # In CJK (Chinese, Japanese and Korean),
156
  # in order to show CJK characters correctly,
157
  # you need to set this configuration.
158
  #
159
  # Because there is no standard font across platforms in CJK,
160
  # you need to set a font installed in your server.
161
  #
162
  # This setting is not necessary in non CJK.
163
  #
164
  # Examples for Japanese:
165
  #   Windows:
166
  #     rmagick_font_path: C:\windows\fonts\msgothic.ttc
167
  #   Linux:
168
  #     rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
169
  #
170
  rmagick_font_path:
171

    
172
  # Maximum number of simultaneous AJAX uploads
173
  #max_concurrent_ajax_uploads: 2
174

    
175
  # Configure OpenIdAuthentication.store
176
  #
177
  # allowed values: :memory, :file, :memcache
178
  #openid_authentication_store: :memory
179

    
180
# specific configuration options for production environment
181
# that overrides the default ones
182
production:
183

    
184
# specific configuration options for development environment
185
# that overrides the default ones
186
development:
(2-2/3)