[mapserver-commits] r12127 - trunk/mapserver/mapcache
svn at osgeo.org
svn at osgeo.org
Fri Aug 26 07:00:02 EDT 2011
Author: tbonfort
Date: 2011-08-26 04:00:02 -0700 (Fri, 26 Aug 2011)
New Revision: 12127
Modified:
trunk/mapserver/mapcache/INSTALL
Log:
rework tile locking mechanism (move locking to higher level)
fixes issue 3.
thomas.bonfort | 2010-10-18 15:10:29 +0200 (Mon, 18 Oct 2010)
Modified: trunk/mapserver/mapcache/INSTALL
===================================================================
--- trunk/mapserver/mapcache/INSTALL 2011-08-26 10:59:59 UTC (rev 12126)
+++ trunk/mapserver/mapcache/INSTALL 2011-08-26 11:00:02 UTC (rev 12127)
@@ -9,6 +9,25 @@
(as root)
# make install
+The installation script takes care of putting the built module in the apache module directory.
+The process for activating a module is usually distro specific, but can be resumed by the
+following snippet that should be present in the apache configuration file(s):
+
+LoadModule geocache_module modules/mod_geocache.so
+<IfModule geocache_module>
+ <Location /geocache>
+ SetHandler geocache
+ GeoCacheConfigFile "/path/to/geocache.xml"
+ </Location>
+</IfModule>
+
+(as root)
+# apachectl restart
+
+
+Customizing the build, or if something went wrong
+-------------------------------------------------
+
mod-geocache requires apache, liburl, libxml2 and libpng development headers.
The configure script will try to locate them in default system locations, that can be
overriden or specified with switches (./configure --help should give you a full list):
More information about the mapserver-commits
mailing list