codepot/codepot/etc/codepot.ini.in

158 lines
7.1 KiB
INI
Raw Normal View History

;------------------------------------------------------------------------------
2010-03-21 14:50:08 +00:00
; default site language
;------------------------------------------------------------------------------
2010-03-21 14:50:08 +00:00
default_site_language = "english";
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
2010-03-21 14:50:08 +00:00
; default site name
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
2010-03-21 14:50:08 +00:00
default_site_name = "@PACKAGE@"
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
; database settings
;------------------------------------------------------------------------------
database_hostname = "localhost"
database_username = ""
database_password = ""
database_name = ""
database_driver = ""
database_prefix = ""
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
; ldap settings
;------------------------------------------------------------------------------
; The userid format and the password format can contain
; ${userid} and ${password} to represent the actual user ID
; and the password respectively.
;------------------------------------------------------------------------------
ldap_server_uri = "ldap://127.0.0.1:389"
2010-01-24 14:34:03 +00:00
ldap_server_protocol_version = "3"
ldap_userid_format = "${userid}"
ldap_password_format = "${password}"
ldap_mail_attribute_name = ""
ldap_admin_binddn = ""
ldap_admin_password = ""
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
2010-02-21 11:27:50 +00:00
; default langage to use. set it to 'auto' to detect it automatically.
; available languages are:
; english, korean, indonesian
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
2010-02-21 11:27:50 +00:00
language = "auto"
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
; When set to yes, viewing pages require a user to sign in.
;------------------------------------------------------------------------------
singin_compulsory = "no"
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
; When set to yes, non-http access is diverted to https using
; the base URL specified in https_base_url. api calls are not affected.
; change api_base_url to force https api calls instead.
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
https_compulsory = "no"
https_url = "https://${SERVER_NAME}${REQUEST_URI}"
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
; API base URL
;------------------------------------------------------------------------------
api_base_url = "http://127.0.0.1"
;------------------------------------------------------------------------------
; Subversion base URL
;------------------------------------------------------------------------------
; This URL depends on the webdav configuration for subversion repository.
; If you have your repository enabled with SSL under /svn, you can set this to
; https://${SERVER_NAME}/svn.
;------------------------------------------------------------------------------
svn_base_url = "http://${SERVER_NAME}:${SERVER_PORT}/svn"
;------------------------------------------------------------------------------
; Login model to use.
;------------------------------------------------------------------------------
login_model = "LdapLoginModel"
;------------------------------------------------------------------------------
; Comma separated list of system administrator IDs
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
; sysadmin_userids = tom, dick, jane
;------------------------------------------------------------------------------
sysadmin_userids =
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
; Maximum file upload size in Kbytes
;------------------------------------------------------------------------------
max_upload_size = "10000"
;------------------------------------------------------------------------------
; Maximum number of latest projects to show in the front page
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
max_latest_projects = "10"
;------------------------------------------------------------------------------
; Maximum number of projects to show
;------------------------------------------------------------------------------
max_projects_per_page = "50"
;------------------------------------------------------------------------------
; Maximum number of issues to show
;------------------------------------------------------------------------------
max_issues_per_page = "50"
;------------------------------------------------------------------------------
; Maximum number of log entries to show per details page
;------------------------------------------------------------------------------
max_logs_per_page = "50"
;------------------------------------------------------------------------------
; Maximum number of log entries to show in the front page
;------------------------------------------------------------------------------
max_logs_in_site_home = "10"
;------------------------------------------------------------------------------
; Maximum number of log entries to show in the project home page
;------------------------------------------------------------------------------
max_logs_in_project_home = "5"
2010-01-24 14:34:03 +00:00
;------------------------------------------------------------------------------
; directory to accomodate subversion repositories
;------------------------------------------------------------------------------
svnrepo_dir = "@DEPOTDIR@/svnrepo"
;------------------------------------------------------------------------------
; directory to store uploaded files
;------------------------------------------------------------------------------
file_dir = "@DEPOTDIR@/files"
;------------------------------------------------------------------------------
; directory to store wiki attachments
;------------------------------------------------------------------------------
attachment_dir = "@DEPOTDIR@/attachments"
;------------------------------------------------------------------------------
; log threshold
;------------------------------------------------------------------------------
; 0 = Disables logging, Error logging TURNED OFF
; 1 = Error Messages (including PHP errors)
; 2 = Debug Messages
; 3 = Informational Messages
; 4 = All Messages
;------------------------------------------------------------------------------
log_threshold = 0
;------------------------------------------------------------------------------
; When yes, a project member can delete a non-empty project containing
; wiki pages, file uploads, etc. An empty project can be deleted any time
; regardless of this option. A system administrator(sysadmin_userids) is
; allowed to delete a non-empty project also regardless of this option.
;------------------------------------------------------------------------------
force_project_delete = "no"
;------------------------------------------------------------------------------
; customized footer
;------------------------------------------------------------------------------
; Leave this empty for the default footer message
;------------------------------------------------------------------------------
footer = "";