Commit 1a64d23dd8b0befccbbe18277120360fc631d047

Authored by Neil Blakey-Milner
1 parent 5f03fa78

Remove no-longer-used auth section, add pathInfoSupport (whether we have

working PATH_INFO support on the platform), execSearchPath (where to
find commands to execute), and import/unzip for the unzip command.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4429 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 15 additions and 5 deletions
config/config.ini
@@ -50,6 +50,15 @@ sslEnabled = default @@ -50,6 +50,15 @@ sslEnabled = default
50 ; 50 ;
51 rootUrl = default 51 rootUrl = default
52 52
  53 +; Whether the platform supports PATH_INFO or not. Currently defaults to
  54 +; true, but later will attempt to determine somehow.
  55 +pathInfoSupport = default
  56 +
  57 +; Where to look for binaries on your system. This defaults to the path
  58 +; set for your web server, which works well for Unix-like systems, but
  59 +; may need some changing for Windows systems.
  60 +execSearchPath = default
  61 +
53 [ui] 62 [ui]
54 ; add the logo of your company to the site's appearance. 63 ; add the logo of your company to the site's appearance.
55 ; this logo MUST be 50px tall, and on a white background. 64 ; this logo MUST be 50px tall, and on a white background.
@@ -64,11 +73,6 @@ companyLogoTitle = ACME Corporation @@ -64,11 +73,6 @@ companyLogoTitle = ACME Corporation
64 ; want to mess with these 73 ; want to mess with these
65 ; ---------------------------------------------------------------- 74 ; ----------------------------------------------------------------
66 75
67 -[auth]  
68 -; Change this to reflect the authentication method you are using  
69 -; valid choices are: DBAuthenticator, LDAPAuthenticator  
70 -authenticationClass = DBAuthenticator  
71 -  
72 [i18n] 76 [i18n]
73 ; Default language for the interface 77 ; Default language for the interface
74 defaultLanguage = en 78 defaultLanguage = en
@@ -109,3 +113,9 @@ uiUrl = ${rootUrl}/presentation/lookAndFeel/knowledgeTree @@ -109,3 +113,9 @@ uiUrl = ${rootUrl}/presentation/lookAndFeel/knowledgeTree
109 ; session timeout (in seconds) 113 ; session timeout (in seconds)
110 sessionTimeout = 1200 114 sessionTimeout = 1200
111 115
  116 +[import]
  117 +; unzip command - will use execSearchPath to find if the path to the
  118 +; binary is not given
  119 +unzip = unzip
  120 +
  121 +