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