Changes between Version 2 and Version 3 of CodeSamples/Tiles/ServingTilesViaHttp
- Timestamp:
- 07/18/08 03:14:38 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodeSamples/Tiles/ServingTilesViaHttp
v2 v3 1 1 == Serving Mapguide Tiles directly via Apache == 2 2 3 For scalability, it can be useful to get apache to serve your map tiles directly.3 For scalability, it can be useful to get Apache to serve your map tiles directly. 4 4 5 This allows the map tiles to be proxied and cached and it frees up the mapguide server process, which during high load6 may have a request queue. 5 This allows the map tiles to be proxied and cached, freeing up the Mapguide Server process, which during high load 6 may have a request queue. The sample configuration also flags the tiles to expire after one day. 7 7 8 8 The implementation involves exposing a single map's tile cache directory via apache httpd.conf … … 17 17 Allow from all 18 18 </Directory> 19 19 20 Alias /sheboyganTiles/ "C:/Program Files/MapGuideOpenSource2.0/Server/Repositories/TileCache/Samples_Sheboygan_MapsTiled_Sheboygan/" 20 21 }}}