dgaudet 97/06/26 19:15:08
Modified: src Tag: APACHE_1_2_X CHANGES conf Tag: APACHE_1_2_X httpd.conf-dist Log: Default HostnameLookups to off. Reviewed by: Dean, Rasmus, Jim, Randy Submitted by: Linus Torvalds Revision Changes Path No revision No revision 1.286.2.10 +8 -4 apache/src/CHANGES Index: CHANGES =================================================================== RCS file: /export/home/cvs/apache/src/CHANGES,v retrieving revision 1.286.2.9 retrieving revision 1.286.2.10 diff -C3 -r1.286.2.9 -r1.286.2.10 *** CHANGES 1997/06/27 02:09:14 1.286.2.9 --- CHANGES 1997/06/27 02:15:05 1.286.2.10 *************** *** 1,7 **** Changes with Apache 1.2.1 ! *) "make clean" at the top level now removes *.o. [Dean Gaudet] PR#752 ! *) Don't serve file system objects unless they are plain files, symlinks, or directories. This prevents local users from using pipes or named sockets to invoke programs for an extremely crude form of --- 1,11 ---- Changes with Apache 1.2.1 ! ! *) "HostnameLookups" now defaults to off because it is far better for ! the net if we require people that actually need this data to ! enable it. [Linus Torvalds] ! *) "make clean" at the top level now removes *.o. [Dean Gaudet] PR#752 ! *) Don't serve file system objects unless they are plain files, symlinks, or directories. This prevents local users from using pipes or named sockets to invoke programs for an extremely crude form of *************** *** 25,33 **** *) Support for dec cc compiler under ultrix. ["P. Alejandro Lopez-Valencia" <[EMAIL PROTECTED]>] PR#388 ! *) Support for Maxion/OS SVR4.2 Real Time Unix. [no name given] PR#383 ! *) mod_status dumps core in inetd mode. [Marc Slemko and Roy Fielding] PR#566 --- 29,37 ---- *) Support for dec cc compiler under ultrix. ["P. Alejandro Lopez-Valencia" <[EMAIL PROTECTED]>] PR#388 ! *) Support for Maxion/OS SVR4.2 Real Time Unix. [no name given] PR#383 ! *) mod_status dumps core in inetd mode. [Marc Slemko and Roy Fielding] PR#566 No revision No revision 1.13.2.1 +3 -1 apache/conf/httpd.conf-dist Index: httpd.conf-dist =================================================================== RCS file: /export/home/cvs/apache/conf/httpd.conf-dist,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -C3 -r1.13 -r1.13.2.1 *** httpd.conf-dist 1997/05/04 20:18:04 1.13 --- httpd.conf-dist 1997/06/27 02:15:07 1.13.2.1 *************** *** 20,26 **** # HostnameLookups: Log the names of clients or just their IP numbers # e.g. www.apache.org (on) or 204.62.129.132 (off) ! HostnameLookups on # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. --- 20,28 ---- # HostnameLookups: Log the names of clients or just their IP numbers # e.g. www.apache.org (on) or 204.62.129.132 (off) ! # The default is off because it'd be overall better for the net if people ! # had to knowingly turn this feature on. ! HostnameLookups off # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch.