Changes between Version 51 and Version 52 of GIS/InstallationGuidelines/Linux


Ignore:
Timestamp:
11/13/10 21:09:26 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GIS/InstallationGuidelines/Linux

    v51 v52  
    434434}}}
    435435
    436 Hillshading:
     436==== Hillshading ====
    437437 * http://wiki.openstreetmap.org/wiki/HikingBikingMaps#Hill_Shading
     438
     439=== Serve Tiles ===
     440Tiles can simply be served by Apache
     441cd ~/mapnik
     442mv tiles /var/www
     443ln -s /var/www/tiles
     444vim /etc/apache2/sites-available/mysite
     445<VirtualHost *:80>
     446  ServerName mysite.org
     447  Alias /tiles     /var/www/tiles
     448  <LocationMatch "/tiles/">
     449    Order Allow,Deny
     450    Allow from all
     451  </LocationMatch>
     452</VirtualHost>
     453apache2ctl restart
     454
    438455== Printing ==
    439456For Printing TMS layers, need to compile the Trunk version of the [http://www.mapfish.org/doc/print/ MapFish Print Module] & then serve the resultant .war with [http://tomcat.apache.org Tomcat]: