Release: Apache 2.0/1.3 port version 1.94

Edward Rudd <[email protected]> Tue, 03 Feb 2004 20:38:54 -0600
Newsgroups gmane.comp.apache.mod-log-sql
Organization Omegaware Systems Ltd.
Message-ID <[email protected]>
I've released 1.94.. This version only has a few new features.
* SSL logging is back in, and as a separate module.. And working under
1.3 and 2.0.
* Fixed a segfault reported by Mark Ridley.
* updated configure script to output nice "status screen" at the end.
  After the configure step it should tell you which version of apache
  you are compiling for and if SSL is enabled

Get it at http://outoforder.cc/projects/apache/mod_log_sql.h

Next release will have updated documentation and the databse
abstraction.. but for now. here's a quicksetup for SSL logging

Apache 1.3
 For SSL Logging make sure the 5 header files mod_ssl.h, ssl_expr.h,
ssl_util_sdbm.h, ssl_util_ssl.h, ssl_util_table.h from the mod_ssl souce
into the apache include directory.. (This just makes thing easier, I may
in the future allow a configure directive to specify the directory of
the mod_ssl source).

# ./configure --with-apxs=/usr/sbin/apxs --enable-ssl \
	--with-db-inc=/usr/include/db1
# make
# make install

Then edit httpd.conf and add/update these lines.
***
LoadModule log_sql_module modules/mod_log_sql.so
<IfModule mod_ssl.c>
LoadModule log_sql_ssl_module modules_mod_log_sql_ssl.so
</IfModule>

Addmodule mod_log_sql.c
<IfModule mod_ssl.c>
AddModule mod_log_sql_ssl.c
<IfModule mod_ssl.c>
**
And then updated the logformat accordingly.

For Apache 2.0
  For SSL logging no headers need to be copied as Apache 2.0 includes
those headers into the apache include directory.
# ./configure --with-apxs=/opt/apache2/bin/apxs --enable-ssl
# make
# make install
Then edit httpd.conf and add/update these lines.
***
LoadModule log_sql_module modules/mod_log_sql.so
<IfModule mod_ssl.c>
LoadModule log_sql_ssl_module modules_mod_log_sql_ssl.so
</IfModule>
***
And then updated the logformat accordingly.


-- 
Edward Rudd <[email protected]>
Website http://outoforder.cc/
signature.asc (application/pgp-signature, 189 B)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQBAIFs+vwMxRUUct20RAjbQAJsHjWVcRO2b1Ry8VA08n/IeY9wukgCgivHz
4Y6hSTksSfssNrvgo7ftnME=
=ldTC
-----END PGP SIGNATURE-----