From: Salve J. N. <sj...@us...> - 2005-03-17 13:52:09
|
Update of /cvsroot/openinteract/OpenInteract2/sample/apache In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22080/sample/apache Modified Files: httpd_cgi_solo.conf httpd_modperl_solo.conf Log Message: Add a comment on overriding a global /images Alias Index: httpd_cgi_solo.conf =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/sample/apache/httpd_cgi_solo.conf,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** httpd_cgi_solo.conf 18 Feb 2005 03:28:49 -0000 1.3 --- httpd_cgi_solo.conf 17 Mar 2005 13:51:59 -0000 1.4 *************** *** 30,33 **** --- 30,36 ---- </Directory> + # Override any global /images alias + #Alias /images [% website_dir %]/html/images + # This sends all incoming requests (except for images, robot help and # dumb Code Red requests) to the OpenInteract cgi script handler Index: httpd_modperl_solo.conf =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/sample/apache/httpd_modperl_solo.conf,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** httpd_modperl_solo.conf 27 Nov 2004 19:28:23 -0000 1.9 --- httpd_modperl_solo.conf 17 Mar 2005 13:51:59 -0000 1.10 *************** *** 44,47 **** --- 44,50 ---- </LocationMatch> + # Override any global /images/ alias + #Alias /images /[% website_dir %]/html/images + <LocationMatch "/images"> SetHandler default-handler *************** *** 57,59 **** </Location> ! </VirtualHost> \ No newline at end of file --- 60,62 ---- </Location> ! </VirtualHost> |