Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
outlinetrue

...

  • WMS services are configured via an XML file - geowebcache.xml, but DDF will utilize the GWC REST services with an admin UI plugin
  • the configuration can be reloaded at runtime using the geowebcache//rest/reload endpoint 
  • Disk quotas can be configured via an xml configuration file.  See (http://geowebcache.org/docs/current/configuration/diskquotas.html)

Security

GWC utilizes spring security for its endpoints.  Luckily, security can be disabled by modifying the spring security config (WEB-INF/acegi-config.xml).  DDF security works with the GWC endpoints as with any of the other DDF endpoints.

...

ElementExample ValueDescription
namelayer1The name of the layer that GWC should respond to. It is equivalent to the value of LAYERS= in WMS requests, and can contain commas. See wmsLayers
mimeFormats<string>image/jpeg</string>List of formats to be supported. These must be known to GeoWebCache. Legal values are image/png, image/png8, image/png24, image/gif, image/jpeg, image/tiff, gml, application/vnd.google-earth.kml+xml, application/vnd.google-earth.kmz+xml
wmsUrlhttp://example.org/wmsA list of URLs to backend servers than can render tiles for this layer. They are used in a round robin fashion for load balancing and automatic failover. The only time you can ommit this element is if you expect the layer to be merged with that from another source.
wmsLayerslayer1,layer2The LAYERS parameter sent to the WMS backend. It may contain commas, to request composites of several layers from the backend, and be different from the name element.
wmsVersion1.1.1The VERSION parameter sent to the WMS backend. The default is 1.1.1
tiledfalseThe TILED parameter sent to the WMS backend. The default is FALSE, you should generally not change this.

...

  • documentation
  • fix logging to use PAX Web logging (currently logging goes to std out)
  • create admin UI plugin for
    • service configuration
    and
  • verify HTTPS to external tile services - how do certs need to be configured?
  • remove consider removal the use of the HTTP proxy in DDF for tile services (GWC is its own proxy)

...