[mapserver-users] MapServer Apache httpd.conf

Puneet Kishor punk.kish at gmail.com
Wed Nov 30 17:38:20 EST 2011


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


More information about the mapserver-users mailing list