Author: jfthomps
Date: Thu Jan 29 20:10:00 2015
New Revision: 1655841

URL: http://svn.apache.org/r1655841
Log:
added items to be added to conf.php

Modified:
    
vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext

Modified: 
vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext
URL: 
http://svn.apache.org/viewvc/vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext?rev=1655841&r1=1655840&r2=1655841&view=diff
==============================================================================
--- 
vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext
 (original)
+++ 
vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.3.2to2.4.mdtext
 Thu Jan 29 20:10:00 2015
@@ -100,6 +100,36 @@ VCL web code at /var/www/html/vcl. If yo
         cd /var/www/html/vcl-2.3.2/.ht-inc
         cp conf.php secrets.php pubkey.pem keys.pem /var/www/html/vcl/.ht-inc
 
+9. **Add new items to conf.php**. The following items need to be added to the 
conf.php
+file (they can be added anywhere as long as it is not inside an 
+array() definition):
+
+        :::PhpLexer
+        define("SEMTIMEOUT", "45");
+
+        define("MAXINITIALIMAGINGTIME", 720); // for imaging reservations, 
users will have at least this long as the max selectable duration
+
+        define("MAXSUBIMAGES", 5000);  // maximum allowed number for subimages 
in a config
+
+        # boolean value of 0 or 1 to enable documentation links on login page 
and page
+        #   where authentication method is selected
+        # 0 = disables; 1 = enabled
+        define("NOAUTH_HOMENAV", 0);
+
+        # boolean value of 0 or 1 to control logging of non SELECT database 
queries for auditing or debugging purposes; queries are logged to the querylog 
table
+        define("QUERYLOGGING", 1);
+
+        # boolean value of 0 or 1 to control logging of XMLRPC calls for 
auditing or debugging purposes; queries are logged to the xmlrpcLog table
+        define("XMLRPCLOGGING", 1);
+
+        # documentation links to display on login page and page
+        #   where authentication method is selected when NOAUTH_HOMENAV is set 
to 1
+        $NOAUTH_HOMENAV = array (
+            "What is VCL" => "http://vcl.apache.org/";,
+            "How to use VCL" => 
"https://cwiki.apache.org/confluence/display/VCL/Using+VCL";,
+            "Report a Problem" => "mailto:"; . HELPEMAIL,
+        );
+
 9. **Make the maintenance directory writable** by the web server user. 
Normally this is
 the apache user, if using a different user change below cmd accordingly.
        


Reply via email to