Indefero

Indefero Commit Details


Date:2009-01-12 15:37:36 (15 years 11 months ago)
Author:Loic d'Anterroches
Branch:dev, develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:11ddf000627022fcc7457624049df63f3784de5f
Parents: fd183d60e8d37d3a9026136725e0a69a7b05635a
Message:Updated the default configuration to match the INSTALL file.

Changes:

File differences

src/IDF/conf/idf.php-dist
2929
3030
3131
32
32
3333
3434
3535
......
5353
5454
5555
56
56
5757
5858
5959
......
6363
6464
6565
66
66
6767
6868
6969
......
9090
9191
9292
93
93
9494
9595
9696
......
9898
9999
100100
101
102
101
102
103103
104104
105105
106
106
107107
108108
109109
110
110
111111
112
112
113113
114114
115115
......
117117
118118
119119
120
120
121121
122122
123123
......
137137
138138
139139
140
141140
142141
143142
144
145
143
146144
147145
148146
$cfg['debug'] = true;
# It will help you catch errors at beginning when configuring your
# SCM backend. It must be turned off in production.
$cfg['debug_scm'] = true;
$cfg['debug_scm'] = false;
# If you have a single git repository, just put the full path to it
# without trailing slash. The path is the path to the git database,
# configuration variable as it is only for information use in the
# tree view.
#
$cfg['git_remote_url'] = 'git://projects.ceondo.com/%s.git';
$cfg['git_remote_url'] = 'git://localhost/%s.git';
# Same as for git, you can have multiple repositories, one for each
# project or a single one for all the projects.
# you can define a local repository, local repositories are defined
# here. This if for security reasons.
$cfg['svn_repositories'] = 'file:///home/svn/repositories/%s';
$cfg['svn_remote_url'] = 'http://projects.ceondo.com/svn/%s';
$cfg['svn_remote_url'] = 'http://localhost/svn/%s';
# Mercurial repositories path
#$cfg['mercurial_repositories'] = '/home/mercurial/repositories/%s';
# $cfg['idf_base'] = '/myfolder/index.php';
# $cfg['url_base'] = 'http://www.mydomain.com';
#
# You have:
# You have mod_rewrite:
# http://www.mydomain.com/
# Put:
# $cfg['idf_base'] = '';
#
#
#
$cfg['idf_base'] = '';
$cfg['url_base'] = 'http://projects.ceondo.com';
$cfg['idf_base'] = '/index.php';
$cfg['url_base'] = 'http://localhost';
# Url to access the media folder which is in the www folder
# of the archive
$cfg['url_media'] = 'http://projects.ceondo.com/media';
$cfg['url_media'] = 'http://localhost/media';
# Url to access a folder in which the files you upload through
# the downloads tab will be stored.
$cfg['url_upload'] = 'http://projects/ceondo.com/media/upload';
$cfg['url_upload'] = 'http://localhost/media/upload';
# Path to the upload folder
$cfg['upload_path'] = '/path/to/media/upload';
$cfg['upload_path'] = '/home/www/indefero/www/media/upload';
#
# The following path *MUST NOT* be accessible through a web browser
# create *TERRIBLE* security issues. In this folder, the attachments
# to the issues will be uploaded and we do not restrict the content type.
#
$cfg['upload_issue_path'] = '/path/to/attachments';
$cfg['upload_issue_path'] = '/home/www/indefero/attachments';
#
# write here a long random string unique for this installation. This
$cfg['tmp_folder'] = '/tmp';
# Database configuration
# For testing we are using in memory SQLite database.
$cfg['db_login'] = 'www';
$cfg['db_password'] = '';
$cfg['db_server'] = '';
# Only needed for MySQL
$cfg['db_version'] = '5.1';
$cfg['db_version'] = '5.1'; # Only needed for MySQL
# If you want to have different installations with the same DB
$cfg['db_table_prefix'] = 'indefero_';
# ** DO NOT USE SQLITE IN PRODUCTION **

Archive Download the corresponding diff file

Page rendered in 0.08031s using 13 queries.