Update of /cvsroot/wtf-tracker/wtf
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv9929
Modified Files:
httpd.conf
Log Message:
Changes to the static section of the conf to bring it inline with the way static subdirectories are suppose to be configured through Apache2 (as far as I can tell)
Index: httpd.conf
===================================================================
RCS file: /cvsroot/wtf-tracker/wtf/httpd.conf,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** httpd.conf 20 Nov 2006 02:50:43 -0000 1.3
--- httpd.conf 28 Nov 2006 18:48:56 -0000 1.4
***************
*** 88,98 ****
<Location /wtf/static>
SetHandler default-handler
!
! # in production, this seems like the only way to default out of these two
! # handlers for static content; in development, these have to be gone or
! # else Apache2::Reload doesn't work
! <IfDefine !DEVEL>
! PerlAuthenHandler Apache2::Const::OK
! PerlAuthzHandler Apache2::Const::OK
! </IfDefine>
</Location>
--- 88,92 ----
<Location /wtf/static>
SetHandler default-handler
! PerlAuthenHandler "sub { return Apache2::Const::OK }"
! PerlAuthzHandler "sub { return Apache2::Const::OK }"
</Location>
|