manoj 99/12/20 23:52:57
Modified: htdocs/manual/mod core.html src CHANGES src/main http_core.c Log: Add back support for UseCanonicalName in <Directory> containers. Mistake was found by Dave Colasurdo <[EMAIL PROTECTED]> Revision Changes Path 1.159 +1 -1 apache-1.3/htdocs/manual/mod/core.html Index: core.html =================================================================== RCS file: /home/cvs/apache-1.3/htdocs/manual/mod/core.html,v retrieving revision 1.158 retrieving revision 1.159 diff -u -d -u -r1.158 -r1.159 --- core.html 1999/12/19 18:46:59 1.158 +++ core.html 1999/12/21 07:52:51 1.159 @@ -3104,7 +3104,7 @@ <A HREF="directive-dict.html#Default" REL="Help"> <STRONG>Default:</STRONG></A> <CODE>UseCanonicalName on</CODE><BR> <A HREF="directive-dict.html#Context" REL="Help"> -<STRONG>Context:</STRONG></A> server config, virtual host<BR> +<STRONG>Context:</STRONG></A> server config, virtual host, directory<BR> <A HREF="directive-dict.html#Override" REL="Help"> <STRONG>Override:</STRONG></A> Options<BR> <A HREF="directive-dict.html#Compatibility" REL="Help"> 1.1485 +3 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1484 retrieving revision 1.1485 diff -u -d -u -r1.1484 -r1.1485 --- CHANGES 1999/12/20 17:43:25 1.1484 +++ CHANGES 1999/12/21 07:52:53 1.1485 @@ -1,5 +1,8 @@ Changes with Apache 1.3.10 + *) Add back support for UseCanonicalName in <Directory> containers + [Manoj Kasichainula] + *) More rigorous checking of Host: headers to fix security problems with mass name-based virtual hosting (whether using mod_rewrite or mod_vhost_alias). 1.276 +1 -1 apache-1.3/src/main/http_core.c Index: http_core.c =================================================================== RCS file: /home/cvs/apache-1.3/src/main/http_core.c,v retrieving revision 1.275 retrieving revision 1.276 diff -u -d -u -r1.275 -r1.276 --- http_core.c 1999/11/04 19:36:32 1.275 +++ http_core.c 1999/12/21 07:52:55 1.276 @@ -2857,7 +2857,7 @@ { "ContentDigest", set_content_md5, NULL, OR_OPTIONS, FLAG, "whether or not to send a Content-MD5 header with each request" }, { "UseCanonicalName", set_use_canonical_name, NULL, - RSRC_CONF, TAKE1, + RSRC_CONF|ACCESS_CONF, TAKE1, "How to work out the ServerName : Port when constructing URLs" }, { "StartServers", set_daemons_to_start, NULL, RSRC_CONF, TAKE1, "Number of child processes launched at server startup" },