Am 30.11.2011 23:38, schrieb Puneet Kishor:

On Nov 30, 2011, at 4:25 PM, Eric Weisbender wrote:

Hello,

Does anyone have a good example of an Apache httpd.conf file working well with 
MapServer on a unix system that they would be willing to share.



assuming you are using MapServer as a cgi program, you need nothing more than

         ScriptAlias /cgi-bin/ "/path/to/cgi-bin/"
         <Directory "/path/to/cgi-bin">
                AllowOverride None
                Options None
                Order allow,deny
                Allow from all
         </Directory>

adjust the `AllowOverride` directive as required.

--
Puneet Kishor_______________________________________________
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users


Hi Eric,


mine's

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Location /cgi-bin>
                Allow from all
                Options +ExecCGI
        </Location>

for Ubuntu (8.04)

HTH

Frank

--
Frank BRONIEWSKI

METRICO s.à r.l.
géomètres
technologies d'information géographique
rue des Romains 36
L-5433 NIEDERDONVEN

tél.: +352 26 74 94 - 28
fax.: +352 26 74 94 99
http://www.metrico.lu
_______________________________________________
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users

Reply via email to