enhanced svn_base_url to support multiple URLs

This commit is contained in:
2010-07-27 01:37:22 +00:00
parent 4d16600d40
commit 0db4dd70b3
2 changed files with 20 additions and 5 deletions

View File

@ -59,11 +59,13 @@ https_url = "https://${SERVER_NAME}${REQUEST_URI}"
api_base_url = "http://127.0.0.1"
;------------------------------------------------------------------------------
; Subversion base URL
; Command-separated list of subversion base URLs
;------------------------------------------------------------------------------
; 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.
; You may specify multiple URLs separated with a comma as shown below:
; "http://${SERVER_NAME}/svn, https://${SERVER_NAME}/svn"
;------------------------------------------------------------------------------
svn_base_url = "http://${SERVER_NAME}:${SERVER_PORT}/svn"
@ -75,12 +77,13 @@ login_model = "LdapLoginModel"
;------------------------------------------------------------------------------
; Comma separated list of system administrator IDs
;------------------------------------------------------------------------------
; sysadmin_userids = tom, dick, jane
; sysadmin_userids = "tom, dick, jane"
;------------------------------------------------------------------------------
sysadmin_userids =
sysadmin_userids = ""
;------------------------------------------------------------------------------
; Maximum file upload size in Kbytes
; Maximum file upload size in Kbytes. You may have to adjust PHP settings
; for a large value to work.
;------------------------------------------------------------------------------
max_upload_size = "10000"