From: Chris W. <la...@us...> - 2004-11-27 19:28:32
|
Update of /cvsroot/openinteract/OpenInteract2/sample/apache In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10577 Modified Files: httpd_modperl_solo.conf Log Message: remove css/ico from types handled by Apache's default handler but add note regarding why and reason for changes Index: httpd_modperl_solo.conf =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/sample/apache/httpd_modperl_solo.conf,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** httpd_modperl_solo.conf 22 May 2004 05:28:55 -0000 1.8 --- httpd_modperl_solo.conf 27 Nov 2004 19:28:23 -0000 1.9 *************** *** 36,50 **** </Location> ! <LocationMatch "\.(jpg|gif|png|js|pdf|jar|zip|gz|css|ico)$"> ! SetHandler default-handler ! </LocationMatch> ! <Location /favicon.ico> SetHandler default-handler ! </Location> ! <Location /images> SetHandler default-handler ! </Location> ScriptAlias /cgi-bin [% website_dir %]/cgi-bin --- 36,50 ---- </Location> ! # If you want to serve them up directly (more efficient) add to the ! # regex 'css|ico', but if you move OI under a different context you'll ! # have to create a separate mapping ! <LocationMatch "\.(jpg|gif|png|js|pdf|jar|zip|gz)$"> SetHandler default-handler ! </LocationMatch> ! <LocationMatch "/images"> SetHandler default-handler ! </LocationMatch> ScriptAlias /cgi-bin [% website_dir %]/cgi-bin |