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