[mapserver-commits] r12435 - trunk/mapserver/mapcache
svn at osgeo.org
svn at osgeo.org
Fri Aug 26 07:25:33 EDT 2011
Author: tbonfort
Date: 2011-08-26 04:25:33 -0700 (Fri, 26 Aug 2011)
New Revision: 12435
Modified:
trunk/mapserver/mapcache/INSTALL
Log:
add format config option to wms service, fix a potential bug on saving getmap images
thomas.bonfort | 2011-08-16 17:20:39 +0200 (Tue, 16 Aug 2011)
Modified: trunk/mapserver/mapcache/INSTALL
===================================================================
--- trunk/mapserver/mapcache/INSTALL 2011-08-26 11:25:26 UTC (rev 12434)
+++ trunk/mapserver/mapcache/INSTALL 2011-08-26 11:25:33 UTC (rev 12435)
@@ -14,17 +14,24 @@
following snippet that should be present in the apache configuration file(s):
LoadModule geocache_module modules/mod_geocache.so
+
+Next, a geocache configuration is mapped to the server url with the following snippet
+
<IfModule geocache_module>
- <Location /geocache>
- SetHandler geocache
- GeoCacheConfigFile "/path/to/geocache.xml"
- </Location>
+ <Directory /path/to/directory>
+ Order Allow,Deny
+ Allow from all
+ </Directory>
+ GeoCacheAlias /geocache "/path/to/directory/geocache.xml"
</IfModule>
(as root)
# apachectl restart
+If you have not disabled the demo service, you should now have access to it on
+http://myserver/geocache/dem
+
Customizing the build, or if something went wrong
-------------------------------------------------
@@ -101,6 +108,13 @@
gdal (actually ogr) is used by the seeding utility to allow the seeding of tiles only intersecting a given polygon, e.g.
to preseed all the tiles of a given country.
+geos (from 0.5 onwards) (optional)
+===================================
+
+--with-geos=/path/to/geos-config
+
+along with gdal/ogr, geos is needed by the seeder to test for the intersection of tiles with geographical features.
+
pcre (optional)
===============
More information about the mapserver-commits
mailing list