~ubuntu-branches/debian/sid/bugzilla/sid

« back to all changes in this revision

Viewing changes to debian/default-files/localconfig

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
#
3
 
# If you are using Apache for your web server, Bugzilla can create .htaccess
 
2
# If you are using Apache as your web server, Bugzilla can create .htaccess
4
3
# files for you that will instruct Apache not to serve files that shouldn't
5
4
# be accessed from the web (like your local configuration data and non-cgi
6
5
# executable files).  For this to work, the directory your Bugzilla
11
10
# <Directory> blocks.)
12
11
# If this is set to 1, Bugzilla will create these files if they don't exist.
13
12
# If this is set to 0, Bugzilla will not create these files.
14
 
$create_htaccess = 0;
15
 
 
16
 
 
17
 
 
18
 
#
19
 
# This is the group your web server runs on.
20
 
# If you have a windows box, ignore this setting.
21
 
# If you do not wish for checksetup to adjust the permissions of anything,
22
 
# set this to "".
23
 
# If you set this to anything besides "", you will need to run checksetup.pl
24
 
# as root.
25
 
$webservergroup = "www-data";
26
 
 
27
 
 
28
 
 
29
 
#
30
 
# How to access the SQL database:
31
 
#
32
 
$db_host = "localhost";         # where is the database?
33
 
$db_port = 3306;                # which port to use
34
 
$db_name = "bugzilla";              # name of the MySQL database
35
 
$db_user = "bugzilla";              # user to attach to the MySQL database
36
 
 
37
 
 
38
 
 
39
 
#
40
 
# Some people actually use passwords with their MySQL database ...
41
 
#
42
 
$db_pass = "secret";
43
 
 
44
 
 
45
 
 
46
 
#
47
 
# Should checksetup.pl try to check if your MySQL setup is correct?
48
 
# (with some combinations of MySQL/Msql-mysql/Perl/moonphase this doesn't work)
49
 
#
 
13
$create_htaccess = 1;
 
14
 
 
15
# This is the group your web server runs as.
 
16
# If you have a Windows box, ignore this setting.
 
17
# If you do not have access to the group your web server runs under,
 
18
# set this to "". If you do set this to "", then your Bugzilla installation
 
19
# will be _VERY_ insecure, because some files will be world readable/writable,
 
20
# and so anyone who can get local access to your machine can do whatever they
 
21
# want. You should only have this set to "" if this is a testing installation
 
22
# and you cannot set this up any other way. YOU HAVE BEEN WARNED!
 
23
# If you set this to anything other than "", you will need to run checksetup.pl
 
24
# asroot, or as a user who is a member of the specified group.
 
25
$webservergroup = 'www-data';
 
26
 
 
27
# What SQL database to use. Default is mysql. List of supported databases
 
28
# can be obtained by listing Bugzilla/DB directory - every module corresponds
 
29
# to one supported database and the name corresponds to a driver name.
 
30
$db_driver = 'mysql';
 
31
 
 
32
# The DNS name of the host that the database server runs on.
 
33
$db_host = 'localhost';
 
34
 
 
35
# The name of the database
 
36
$db_name = 'bugzilla3';
 
37
 
 
38
# Who we connect to the database as.
 
39
$db_user = 'bugzilla3';
 
40
 
 
41
# Enter your database password here. It's normally advisable to specify
 
42
# a password for your bugzilla database user.
 
43
# If you use apostrophe (') or a backslash (\) in your password, you'll
 
44
# need to escape it by preceding it with a '\' character. (\') or (\)
 
45
# (Far simpler just not to use those characters.)
 
46
$db_pass = '$db_pass = \'bugzilla\';';
 
47
 
 
48
# Sometimes the database server is running on a non-standard port. If that's
 
49
# the case for your database server, set this to the port number that your
 
50
# database server is running on. Setting this to 0 means "use the default
 
51
# port for my database server."
 
52
$db_port = 3306;
 
53
 
 
54
# MySQL Only: Enter a path to the unix socket for MySQL. If this is
 
55
# blank, then MySQL's compiled-in default will be used. You probably
 
56
# want that.
 
57
$db_sock = '';
 
58
 
 
59
# Should checksetup.pl try to verify that your database setup is correct?
 
60
# (with some combinations of database servers/Perl modules/moonphase this
 
61
# doesn't work)
50
62
$db_check = 1;
51
63
 
52
 
 
53
 
 
54
 
#
55
64
# With the introduction of a configurable index page using the
56
65
# template toolkit, Bugzilla's main index page is now index.cgi.
57
66
# Most web servers will allow you to use index.cgi as a directory
58
 
# index and many come preconfigured that way, however if yours
59
 
# doesn't you'll need an index.html file that provides redirection
 
67
# index, and many come preconfigured that way, but if yours doesn't
 
68
# then you'll need an index.html file that provides redirection
60
69
# to index.cgi. Setting $index_html to 1 below will allow
61
70
# checksetup.pl to create one for you if it doesn't exist.
62
71
# NOTE: checksetup.pl will not replace an existing file, so if you
63
72
#       wish to have checksetup.pl create one for you, you must
64
 
#       make sure that there isn't already an index.html
 
73
#       make sure that index.html doesn't already exist
65
74
$index_html = 0;
66
75
 
67
 
 
68
 
 
69
 
#
70
 
# The types of content that template files can generate, indexed by file extension.
71
 
#
72
 
$contenttypes = {
73
 
  "html" => "text/html" , 
74
 
   "rdf" => "application/xml" , 
75
 
   "xml" => "text/xml" , 
76
 
    "js" => "application/x-javascript" , 
77
 
};
78
 
 
79
 
 
80
 
#
81
76
# For some optional functions of Bugzilla (such as the pretty-print patch
82
77
# viewer), we need the cvs binary to access files and revisions.
83
78
# Because it's possible that this program is not in your path, you can specify
84
79
# its location here.  Please specify the full path to the executable.
85
 
$cvsbin = "/usr/bin/cvs";
86
 
 
87
 
 
88
 
 
89
 
#
 
80
$cvsbin = '/usr/bin/cvs';
 
81
 
90
82
# For some optional functions of Bugzilla (such as the pretty-print patch
91
83
# viewer), we need the interdiff binary to make diffs between two patches.
92
84
# Because it's possible that this program is not in your path, you can specify
93
85
# its location here.  Please specify the full path to the executable.
94
 
$interdiffbin = "";
95
 
 
96
 
 
97
 
 
98
 
#
 
86
$interdiffbin = '';
 
87
 
99
88
# The interdiff feature needs diff, so we have to have that path.
100
 
# Please specify only the directory name, with no trailing slash.
101
 
$diffpath = "/usr/bin";
102
 
 
103
 
 
104
 
 
105
 
# Enter a path to the unix socket for mysql. If this is blank, then mysql's
106
 
# compiled-in default will be used. You probably want that.
107
 
$db_sock = '';
108
 
 
109
 
 
110
 
 
111
 
#
112
 
# What SQL database to use. Default is mysql. List of supported databases
113
 
# can be obtained by listing Bugzilla/DB directory - every module corresponds
114
 
# to one supported database and the name corresponds to a driver name.
115
 
#
116
 
$db_driver = "mysql";
117
 
 
118
 
 
 
89
# Please specify the directory name only; do not use trailing slash.
 
90
$diffpath = '/usr/bin';