Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

Changes between Version 1 and Version 2 of TracCgi


Ignore:
Timestamp:
21/09/2011 11:27:42 (13 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracCgi

    v1 v2  
    6868Add the following snippet to Apache configuration '''before''' the `ScriptAlias` for the CGI script, changing paths to match your deployment: 
    6969{{{ 
    70 Alias /trac/chrome/common /path/to/trac/htdocs 
     70Alias /trac/chrome/common /path/to/trac/htdocs/common 
     71Alias /trac/chrome/site /path/to/trac/htdocs/site 
    7172<Directory "/path/to/www/trac/htdocs"> 
    7273  Order allow,deny 
    7374  Allow from all 
    7475</Directory> 
     76}}} 
     77 
     78If using mod_python, you might want to add this too (otherwise, the alias will be ignored): 
     79{{{ 
     80<Location "/trac/chrome/common/"> 
     81  SetHandler None 
     82</Location> 
    7583}}} 
    7684