Advertisement
Guest User

Untitled

a guest
May 5th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 KB | None | 0 0
  1. # If you are using Apache as your web server, Bugzilla can create .htaccess
  2. # files for you that will instruct Apache not to serve files that shouldn't
  3. # be accessed from the web browser (like your local configuration data and non-cgi
  4. # executable files). For this to work, the directory your Bugzilla
  5. # installation is in must be within the jurisdiction of a <Directory> block
  6. # in the httpd.conf file that has 'AllowOverride Limit' in it. If it has
  7. # 'AllowOverride All' or other options with Limit, that's fine.
  8. # (Older Apache installations may use an access.conf file to store these
  9. # <Directory> blocks.)
  10. # If this is set to 1, Bugzilla will create these files if they don't exist.
  11. # If this is set to 0, Bugzilla will not create these files.
  12. $create_htaccess = 1;
  13.  
  14. # This is the group your web server runs as.
  15. # If you have a Windows box, ignore this setting.
  16. # If you do not have access to the group your web server runs under,
  17. # set this to "". If you do set this to "", then your Bugzilla installation
  18. # will be _VERY_ insecure, because some files will be world readable/writable,
  19. # and so anyone who can get local access to your machine can do whatever they
  20. # want. You should only have this set to "" if this is a testing installation
  21. # and you cannot set this up any other way. YOU HAVE BEEN WARNED!
  22. # If you set this to anything other than "", you will need to run checksetup.pl
  23. # asroot, or as a user who is a member of the specified group.
  24. $webservergroup = 'users';
  25.  
  26. # What SQL database to use. Default is mysql. List of supported databases
  27. # can be obtained by listing Bugzilla/DB directory - every module corresponds
  28. # to one supported database and the name corresponds to a driver name.
  29. $db_driver = 'mysql';
  30.  
  31. # The DNS name of the host that the database server runs on.
  32. $db_host = 'localhost';
  33.  
  34. # The name of the database
  35. $db_name = 'bugs';
  36.  
  37. # Who we connect to the database as.
  38. $db_user = 'bugs';
  39.  
  40. # Enter your database password here. It's normally advisable to specify
  41. # a password for your bugzilla database user.
  42. # If you use apostrophe (') or a backslash (\) in your password, you'll
  43. # need to escape it by preceding it with a '\' character. (\') or (\)
  44. # (Far simpler just not to use those characters.)
  45. $db_pass = 'bugs';
  46.  
  47. # Sometimes the database server is running on a non-standard port. If that's
  48. # the case for your database server, set this to the port number that your
  49. # database server is running on. Setting this to 0 means "use the default
  50. # port for my database server."
  51. $db_port = 0;
  52.  
  53. # MySQL Only: Enter a path to the unix socket for MySQL. If this is
  54. # blank, then MySQL's compiled-in default will be used. You probably
  55. # want that.
  56. $db_sock = '';
  57.  
  58. # Should checksetup.pl try to verify that your database setup is correct?
  59. # (with some combinations of database servers/Perl modules/moonphase this
  60. # doesn't work)
  61. $db_check = 1;
  62.  
  63. # With the introduction of a configurable index page using the
  64. # template toolkit, Bugzilla's main index page is now index.cgi.
  65. # Most web servers will allow you to use index.cgi as a directory
  66. # index, and many come preconfigured that way, but if yours doesn't
  67. # then you'll need an index.html file that provides redirection
  68. # to index.cgi. Setting $index_html to 1 below will allow
  69. # checksetup.pl to create one for you if it doesn't exist.
  70. # NOTE: checksetup.pl will not replace an existing file, so if you
  71. # wish to have checksetup.pl create one for you, you must
  72. # make sure that index.html doesn't already exist
  73. $index_html = 0;
  74.  
  75. # For some optional functions of Bugzilla (such as the pretty-print patch
  76. # viewer), we need the cvs binary to access files and revisions.
  77. # Because it's possible that this program is not in your path, you can specify
  78. # its location here. Please specify the full path to the executable.
  79. $cvsbin = '/usr/bin/cvs';
  80.  
  81. # For some optional functions of Bugzilla (such as the pretty-print patch
  82. # viewer), we need the interdiff binary to make diffs between two patches.
  83. # Because it's possible that this program is not in your path, you can specify
  84. # its location here. Please specify the full path to the executable.
  85. $interdiffbin = '';
  86.  
  87. # The interdiff feature needs diff, so we have to have that path.
  88. # Please specify the directory name only; do not use trailing slash.
  89. $diffpath = '/usr/bin';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement