Project

General

Profile

Defect #41085 ยป configuration.yml

Sandeep Utekar, 2024-08-01 09:20

 
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
    delivery_method: :smtp
17
    smtp_settings:
18
      address: 172.17.9.149
19
      port: 25
20
  #   enable_starttls_auto: false
21
      openssl_verify_mode: 'none'
22
      domain: "ibie.kotakgroup.com"
23
  #   disable_start_tls: true
24
      authentication: :nil
25
  #   tls: false
26
  #   ssl: false
27

    
28
  # ==== Simple SMTP server at localhost
29
  #
30
  #  email_delivery:
31
  #  delivery_method: :smtp
32
  #  smtp_settings:
33
  #    
34
  #    address: 
35
  #    port: 
36
  #    domain: example.net
37
  #    authentication: :login
38
  #    user_name: 
39
  #    password: 
40

    
41
  #    delivery_method: :smtp
42
  #    smtp_settings:
43
  #      address: "localhost"
44
  #      port: 25
45
  #
46
  # ==== SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
47
  #
48
  #  email_delivery:
49
  #  delivery_method: :smtp
50
  #  smtp_settings:
51
  #    
52
  #    address: 
53
  #    port: 
54
  #    domain: example.net
55
  #    authentication: :login
56
  #    user_name: 
57
  #    password: 
58

    
59
  #    delivery_method: :smtp
60
  #    smtp_settings:
61
  #      address: "example.com"
62
  #      port: 25
63
  #      authentication: :login
64
  #      domain: 'foo.com'
65
  #      user_name: 'myaccount'
66
  #      password: 'password'
67
  #
68
  # ==== SMTP server at example.com using PLAIN authentication
69
  #
70
  #  email_delivery:
71
  #  delivery_method: :smtp
72
  #  smtp_settings:
73
  #    
74
  #    address: 
75
  #    port: 
76
  #    domain: example.net
77
  #    authentication: :login
78
  #    user_name: 
79
  #    password: 
80

    
81
  #    delivery_method: :smtp
82
  #    smtp_settings:
83
  #      address: "example.com"
84
  #      port: 25
85
  #      authentication: :plain
86
  #      domain: 'example.com'
87
  #      user_name: 'myaccount'
88
  #      password: 'password'
89
  #
90
  # ==== SMTP server at using TLS (GMail)
91
  # This might require some additional configuration. See the guides at:
92
  # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration
93
  #
94
  #  email_delivery:
95
  #  delivery_method: :smtp
96
  #  smtp_settings:
97
  #    
98
  #    address: 
99
  #    port: 
100
  #    domain: example.net
101
  #    authentication: :login
102
  #    user_name: 
103
  #    password: 
104

    
105
  #    delivery_method: :smtp
106
  #    smtp_settings:
107
  #      enable_starttls_auto: true
108
  #      address: "smtp.gmail.com"
109
  #      port: 587
110
  #      domain: "smtp.gmail.com" # 'your.domain.com' for GoogleApps
111
  #      authentication: :plain
112
  #      user_name: "your_email@gmail.com"
113
  #      password: "your_password"
114
  #
115
  # ==== Sendmail command
116
  #
117
  #  email_delivery:
118
  #  delivery_method: :smtp
119
  #  smtp_settings:
120
  #    
121
  #    address: 
122
  #    port: 
123
  #    domain: example.net
124
  #    authentication: :login
125
  #    user_name: 
126
  #    password: 
127

    
128
  #    delivery_method: :sendmail
129

    
130
  # Absolute path to the directory where attachments are stored.
131
  # The default is the 'files' directory in your Redmine instance.
132
  # Your Redmine instance needs to have write permission on this
133
  # directory.
134
  # Examples:
135
  # attachments_storage_path: /var/redmine/files
136
  attachments_storage_path:
137

    
138
  # Configuration of the autologin cookie.
139
  # autologin_cookie_name: the name of the cookie (default: autologin)
140
  # autologin_cookie_path: the cookie path (default: /)
141
  # autologin_cookie_secure: true sets the cookie secure flag (default: false)
142
  autologin_cookie_name:
143
  autologin_cookie_path:
144
  autologin_cookie_secure:
145

    
146
  # Configuration of SCM executable command.
147
  #
148
  # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
149
  # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
150
  #
151
  # On Windows + JRuby 1.6.2, path which contains spaces does not work.
152
  # For example, "C:\Program Files\TortoiseHg\hg.exe".
153
  # If you want to this feature, you need to install to the path which does not contains spaces.
154
  # For example, "C:\TortoiseHg\hg.exe".
155
  #
156
  # Examples:
157
  # scm_subversion_command: svn                                       # (default: svn)
158
  # scm_mercurial_command:  C:\Program Files\TortoiseHg\hg.exe        # (default: hg)
159
  # scm_git_command:        /usr/local/bin/git                        # (default: git)
160
  # scm_cvs_command:        cvs                                       # (default: cvs)
161
  # scm_bazaar_command:     bzr.exe                                   # (default: bzr)
162
  # scm_darcs_command:      darcs-1.0.9-i386-linux                    # (default: darcs)
163
  #
164
  scm_subversion_command:
165
  scm_mercurial_command:
166
  scm_git_command:
167
  scm_cvs_command:
168
  scm_bazaar_command:
169
  scm_darcs_command:
170

    
171
  # Absolute path to the SCM commands errors (stderr) log file.
172
  # The default is to log in the 'log' directory of your Redmine instance.
173
  # Example:
174
  # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
175
  scm_stderr_log_file:
176

    
177
  # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
178
  # If you don't want to enable data encryption, just leave it blank.
179
  # WARNING: losing/changing this key will make encrypted data unreadable.
180
  #
181
  # If you want to encrypt existing passwords in your database:
182
  # * set the cipher key here in your configuration file
183
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
184
  #
185
  # If you have encrypted data and want to change this key, you have to:
186
  # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
187
  # * change the cipher key here in your configuration file
188
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
189
  database_cipher_key:
190

    
191
  # Set this to false to disable plugins' assets mirroring on startup.
192
  # You can use `rake redmine:plugins:assets` to manually mirror assets
193
  # to public/plugin_assets when you install/upgrade a Redmine plugin.
194
  #
195
  #mirror_plugins_assets_on_startup: false
196

    
197
  # Your secret key for verifying cookie session data integrity. If you
198
  # change this key, all old sessions will become invalid! Make sure the
199
  # secret is at least 30 characters and all random, no regular words or
200
  # you'll be exposed to dictionary attacks.
201
  #
202
  # If you have a load-balancing Redmine cluster, you have to use the
203
  # same secret token on each machine.
204
  #secret_token: 'change it to a long random string'
205

    
206
  # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
207
  # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
208
  imagemagick_convert_command: '/opt/bitnami/common/bin/convert'
209

    
210
  # Configuration of RMagcik font.
211
  #
212
  # Redmine uses RMagcik in order to export gantt png.
213
  # You don't need this setting if you don't install RMagcik.
214
  #
215
  # In CJK (Chinese, Japanese and Korean),
216
  # in order to show CJK characters correctly,
217
  # you need to set this configuration.
218
  #
219
  # Because there is no standard font across platforms in CJK,
220
  # you need to set a font installed in your server.
221
  #
222
  # This setting is not necessary in non CJK.
223
  #
224
  # Examples for Japanese:
225
  #   Windows:
226
  #     rmagick_font_path: C:\windows\fonts\msgothic.ttc
227
  #   Linux:
228
  #     rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
229
  #
230
  rmagick_font_path:
231

    
232
  # Maximum number of simultaneous AJAX uploads
233
  #max_concurrent_ajax_uploads: 2
234

    
235
  # Configure OpenIdAuthentication.store
236
  #
237
  # allowed values: :memory, :file, :memcache
238
  #openid_authentication_store: :memory
239

    
240
# specific configuration options for production environment
241
# that overrides the default ones
242
production:
243

    
244
# specific configuration options for development environment
245
# that overrides the default ones
246
development:
247
# = Redmine configuration file
    (1-1/1)