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
[email protected]
http://lists.osgeo.org/mailman/listinfo/mapserver-users

Reply via email to