Project

General

Profile

Defect #21299 ยป confugation.yml.txt

please help me to view my localhost redmine login page - suresh akhnoor, 2015-11-23 12:44

 
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

    
12
default:
13
  # Outgoing emails configuration
14
email_delivery:
15
        delivery_method: :smtp
16
                smtp_settings:
17
                 address: smtp.gmail.com
18
                port: 587
19
               domain: "smtp.gmail.com"
20
               authentication: :login
21
              user_name: *********
22
               password:********
23

    
24
  # See the examples below and the Rails guide for more configuration options:
25
  # http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration
26
 email_delivery:
27
        delivery_method: :smtp
28
        smtp_settings:
29
         address: smtp.gmail.com
30
         port: 587
31
        domain: "smtp.gmail.com"
32
        authentication: :login
33
       user_name: ************
34

    
35
        password: ******
36

    
37

    
38

    
39
#  ==== Simple SMTP server at localhost
40
   email_delivery:
41
  delivery_method: :smtp
42
  smtp_settings:
43
  address: smtp.gmail.com
44
  port: 587
45
  domain: "smtp.gmail.com"
46
  authentication: :login
47
   user_name: *********
48

    
49
   password:*********
50

    
51
#SMTP server at example.com using LOGIN authentication and checking HELO for foo.com
52

    
53
  email_delivery:
54
  delivery_method: :smtp
55
  smtp_settings:
56
  address: smtp.gmail.com
57
  port: 587
58
  domain: "smtp.gmail.com"
59
  authentication: :login
60
  user_name:************
61
  password: ********
62

    
63
  # ==== SMTP server at example.com using PLAIN authentication
64

    
65
 delivery_method: :smtp
66
    smtp_settings:
67
    address: smtp.gmail.com
68
    port: 587
69
    domain: "smtp.gmail.com"
70
    authentication: :login
71
    user_name: ***********
72

    
73
    password: *********
74

    
75

    
76

    
77
# ==== SMTP server at using TLS (GMail)
78
  # This might require some additional configuration. See the guides at:
79
  # http://www.redmine.org/projects/redmine/wiki/EmailConfiguration
80

    
81
#email_delivery:
82
#delivery_method: :smtp
83
#   smtp_settings:
84
#   address: smtp.gmail.com
85
#   port: 587
86
#   domain: "smtp.gmail.com"
87
#   authentication: :login
88
#  user_name:*********
89

    
90
#  password: 2pgeuSZD
91

    
92
# ==== Sendmail command
93

    
94
#  email_delivery:
95
# delivery_method: :sendmail
96

    
97
  # Absolute path to the directory where attachments are stored.
98
  # The default is the 'files' directory in your Redmine instance.
99
  # Your Redmine instance needs to have write permission on this
100
  # directory.
101
  # Examples:
102
  # attachments_storage_path: /var/redmine/files
103
  # attachments_storage_path: D:/redmine/files
104
  attachments_storage_path:
105

    
106

    
107

    
108

    
109
 # Configuration of the autologin cookie.
110
  # autologin_cookie_name: the name of the cookie (default: autologin)
111
  # autologin_cookie_path: the cookie path (default: /)
112
  # autologin_cookie_secure: true sets the cookie secure flag (default: false)
113
 autologin_cookie_name:
114
 autologin_cookie_path:
115
 autologin_cookie_secure:
116

    
117
  # Configuration of SCM executable command.
118
  #
119
  # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe)
120
  # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work.
121
  #
122
  # On Windows + JRuby 1.6.2, path which contains spaces does not work.
123
  # For example, "C:\Program Files\TortoiseHg\hg.exe".
124
  # If you want to this feature, you need to install to the path which does not contains spaces.
125
  # For example, "C:\TortoiseHg\hg.exe".
126
  #
127
  # Examples:
128
  # scm_subversion_command: svn                                       # (default: svn)
129
  # scm_mercurial_command:  C:\Program Files\TortoiseHg\hg.exe        # (default: hg)
130
  # scm_git_command:        /usr/local/bin/git                        # (default: git)
131
  # scm_cvs_command:        cvs                                       # (default: cvs)
132
  # scm_bazaar_command:     bzr.exe                                   # (default: bzr)
133
  # scm_darcs_command:      darcs-1.0.9-i386-linux                    # (default: darcs)
134
  #
135
 scm_subversion_command:
136
  scm_mercurial_command:
137
  scm_git_command:
138
  scm_cvs_command:
139
  scm_bazaar_command:
140
  scm_darcs_command:
141

    
142

    
143

    
144

    
145
 # SCM paths validation.
146
  #
147
  # You can configure a regular expression for each SCM that will be used to
148
  # validate the path of new repositories (eg. path entered by users with the
149
  # "Manage repositories" permission and path returned by reposman.rb).
150
  # The regexp will be wrapped with \A \z, so it must match the whole path.
151
  # And the regexp is case sensitive.
152
  #
153
  # You can match the project identifier by using %project% in the regexp.
154
  #
155
  # You can also set a custom hint message for each SCM that will be displayed
156
  # on the repository form instead of the default one.
157
  #
158
  # Examples:
159
  # scm_subversion_path_regexp: file:///svnpath/[a-z0-9_]+
160
  # scm_subversion_path_info: SVN URL (eg. file:///svnpath/foo)
161
  #
162
  # scm_git_path_regexp: /gitpath/%project%(\.[a-z0-9_])?/
163
  #
164
  scm_subversion_path_regexp:
165
  scm_mercurial_path_regexp:
166
  scm_git_path_regexp:
167
  scm_cvs_path_regexp:
168
  scm_bazaar_path_regexp:
169
  scm_darcs_path_regexp:
170
  scm_filesystem_path_regexp:
171

    
172

    
173
 scm_subversion_path_regexp:
174
  scm_mercurial_path_regexp:
175
  scm_git_path_regexp:
176
  scm_cvs_path_regexp:
177
  scm_bazaar_path_regexp:
178
  scm_darcs_path_regexp:
179
  scm_filesystem_path_regexp:
180

    
181
  # Absolute path to the SCM commands errors (stderr) log file.
182
  # The default is to log in the 'log' directory of your Redmine instance.
183
  # Example:
184
  # scm_stderr_log_file: /var/log/redmine_scm_stderr.log
185
  scm_stderr_log_file:
186

    
187
  # Key used to encrypt sensitive data in the database (SCM and LDAP passwords).
188
  # If you don't want to enable data encryption, just leave it blank.
189
  # WARNING: losing/changing this key will make encrypted data unreadable.
190
  #
191
  # If you want to encrypt existing passwords in your database:
192
  # * set the cipher key here in your configuration file
193
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
194
  #
195
  # If you have encrypted data and want to change this key, you have to:
196
  # * decrypt data using 'rake db:decrypt RAILS_ENV=production' first
197
  # * change the cipher key here in your configuration file
198
  # * encrypt data using 'rake db:encrypt RAILS_ENV=production'
199
  database_cipher_key:
200

    
201
  # Set this to false to disable plugins' assets mirroring on startup.
202
  # You can use `rake redmine:plugins:assets` to manually mirror assets
203
  # to public/plugin_assets when you install/upgrade a Redmine plugin.
204
  #
205
  #mirror_plugins_assets_on_startup: false
206

    
207
  # Your secret key for verifying cookie session data integrity. If you
208
  # change this key, all old sessions will become invalid! Make sure the
209
  # secret is at least 30 characters and all random, no regular words or
210
  # you'll be exposed to dictionary attacks.
211

    
212

    
213
 #
214
  # If you have a load-balancing Redmine cluster, you have to use the
215
  # same secret token on each machine.
216
  #secret_token: 'change it to a long random string'
217

    
218
  # Requires users to re-enter their password for sensitive actions (editing
219
  # of account data, project memberships, application settings, user, group,
220
  # role, auth source management and project deletion). Disabled by default.
221
  # Timeout is set in minutes.
222
  #
223
  #sudo_mode: true
224
  #sudo_mode_timeout: 15
225

    
226
  # Absolute path (e.g. /usr/bin/convert, c:/im/convert.exe) to
227
  # the ImageMagick's `convert` binary. Used to generate attachment thumbnails.
228
  #imagemagick_convert_command:
229

    
230
  # Configuration of RMagcik font.
231
  #
232
  # Redmine uses RMagcik in order to export gantt png.
233
  # You don't need this setting if you don't install RMagcik.
234
  #
235
  # In CJK (Chinese, Japanese and Korean),
236
  # in order to show CJK characters correctly,
237
          # you need to set this configuration.
238
  #
239
  # Because there is no standard font across platforms in CJK,
240
  # you need to set a font installed in your server.
241
  #
242
  # This setting is not necessary in non CJK.
243
  #
244
  # Examples for Japanese:
245

    
246
#   Windows:
247
  #     rmagick_font_path: C:\windows\fonts\msgothic.ttc
248
  #   Linux:
249
  #     rmagick_font_path: /usr/share/fonts/ipa-mincho/ipam.ttf
250
  #
251
  rmagick_font_path:
252

    
253
  # Maximum number of simultaneous AJAX uploads
254
  #max_concurrent_ajax_uploads: 2
255

    
256
  # Configure OpenIdAuthentication.store
257
  #
258
  # allowed values: :memory, :file, :memcache
259
  #openid_authentication_store: :memory
260

    
261
# specific configuration options for production environment
262
# that overrides the default ones
263
production:
264
 delivery_method: :smtp
265
  smtp_settings:
266
   address: smtp.gmail.com
267
   port: 587
268
   domain: "smtp.gmail.com"
269
   authentication: :login
270
   user_name:******** 
271
   password: ********
272

    
273
# specific configuration options for development environment
274
# that overrides the default ones
275
development:
276

    
277

    
278

    
279

    
280

    
281

    
282

    
283

    
    (1-1/1)