Changes between Version 2 and Version 3 of CodeSamples/Tiles/ServingTilesViaHttp


Ignore:
Timestamp:
Jul 18, 2008, 3:14:38 AM (16 years ago)
Author:
zspitzer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeSamples/Tiles/ServingTilesViaHttp

    v2 v3  
    11== Serving Mapguide Tiles directly via Apache ==
    22
    3 For scalability, it can be useful to get apache to serve your map tiles directly.
     3For scalability, it can be useful to get Apache to serve your map tiles directly.
    44
    5 This allows the map tiles to be proxied and cached and it frees up the mapguide server process, which during high load
    6 may have a request queue.
     5This allows the map tiles to be proxied and cached, freeing up the Mapguide Server process, which during high load
     6may have a request queue. The sample configuration also flags the tiles to expire after one day.   
    77
    88The implementation involves exposing a single map's tile cache directory via apache httpd.conf
     
    1717    Allow from all
    1818</Directory>
     19
    1920Alias /sheboyganTiles/ "C:/Program Files/MapGuideOpenSource2.0/Server/Repositories/TileCache/Samples_Sheboygan_MapsTiled_Sheboygan/"
    2021}}}