From owner-cvs-all@FreeBSD.ORG Thu Nov 11 05:08:41 2010 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F2D01065670; Thu, 11 Nov 2010 05:08:41 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F29D58FC14; Thu, 11 Nov 2010 05:08:40 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id oAB58exk083101; Thu, 11 Nov 2010 05:08:40 GMT (envelope-from pgollucci@repoman.freebsd.org) Received: (from pgollucci@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oAB58eGk083100; Thu, 11 Nov 2010 05:08:40 GMT (envelope-from pgollucci) Message-Id: <201011110508.oAB58eGk083100@repoman.freebsd.org> From: "Philip M. Gollucci" Date: Thu, 11 Nov 2010 05:08:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/www Makefile ports/www/mod_whatkilledus Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Nov 2010 05:08:41 -0000 pgollucci 2010-11-11 05:08:40 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/mod_whatkilledus Makefile distinfo pkg-descr Log: mod_whatkilledus is an experimental module for Apache httpd 2.x which tracks the current request and logs a report of the active request when a child process crashes. Requirements: Apache httpd >= 2.0.49 must be built with the --enable-exception-hook configure option and mod_so enabled. Activating mod_whatkilledus: 1. Load it like any other DSO. LoadModule whatkilledus_module modules/mod_whatkilledus.so 2. Enable exception hooks for modules like mod_whatkilledus: EnableExceptionHook On 3. Choose where the report on current activity should be written. If you want it reported to some place other than the error log, use the WhatKilledUsLog directive to specify a fully-qualified filename for the log. Note that the web server user id (e.g., "nobody") must be able to create or append to this log file, as the log file is not opened until a crash occurs. WWW: http://people.apache.org/~trawick/exception_hook.html PR: ports/151932 Submitted by: Frank Wall Revision Changes Path 1.2733 +1 -0 ports/www/Makefile 1.1 +39 -0 ports/www/mod_whatkilledus/Makefile (new) 1.1 +4 -0 ports/www/mod_whatkilledus/distinfo (new) 1.1 +23 -0 ports/www/mod_whatkilledus/pkg-descr (new)