From owner-cvs-ports@FreeBSD.ORG Thu Nov 11 05:08:19 2010 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DA15106566B; Thu, 11 Nov 2010 05:08:19 +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 0CE258FC0C; Thu, 11 Nov 2010 05:08:19 +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 oAB58I9o083010; Thu, 11 Nov 2010 05:08:18 GMT (envelope-from pgollucci@repoman.freebsd.org) Received: (from pgollucci@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id oAB58IiE083009; Thu, 11 Nov 2010 05:08:18 GMT (envelope-from pgollucci) Message-Id: <201011110508.oAB58IiE083009@repoman.freebsd.org> From: "Philip M. Gollucci" Date: Thu, 11 Nov 2010 05:08:18 +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_backtrace Makefile distinfo pkg-descr X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Nov 2010 05:08:19 -0000 pgollucci 2010-11-11 05:08:18 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/mod_backtrace Makefile distinfo pkg-descr Log: mod_backtrace is an experimental module for Apache httpd 2.x which collects backtraces when a child process crashes. Currently it is implemented only on Linux and FreeBSD, but other platforms could be supported in the future. Requirements: Apache httpd >= 2.0.49 must be built with the --enable-exception-hook configure option and mod_so enabled. Activating mod_backtrace: 1. Load it like any other DSO: LoadModule backtrace_module modules/mod_backtrace.so 2. Enable exception hooks for modules like mod_backtrace: EnableExceptionHook On 3. Choose where backtrace information should be written. If you want backtraces from crashes to be reported some place other than the error log, use the BacktraceLog directive to specify a fully-qualified filename for the log to which backtraces will be written. 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 WWW: http://people.apache.org/~trawick/exception_hook.html PR: ports/151931 Submitted by: Frank Wall Revision Changes Path 1.2732 +1 -0 ports/www/Makefile 1.1 +43 -0 ports/www/mod_backtrace/Makefile (new) 1.1 +2 -0 ports/www/mod_backtrace/distinfo (new) 1.1 +24 -0 ports/www/mod_backtrace/pkg-descr (new)