aboutsummaryrefslogtreecommitdiff
path: root/www/mod_whatkilledus
Commit message (Collapse)AuthorAgeFilesLines
* - add stage supportOlli Hauer2014-03-091-2/+3
| | | | | | | | - add LICENSE - adopt new LIB_DEPENDS syntax Notes: svn path=/head/; revision=347568
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | www) Notes: svn path=/head/; revision=327776
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - USE_APACHE s/22+/22/Olli Hauer2012-09-241-6/+2
| | | | | | | | | | | | some additional cleanups/fixes - adopt new Makefile header - convert to optionsNG - use BROKEN instead IGNORE in bsd.apache.mk with hat apache@ Notes: svn path=/head/; revision=304797
* - remove www/apache20 and devel/apr0Olli Hauer2012-08-181-3/+3
| | | | | | | | | | | | - s/USE_APACHE= 20+/USE_APACHE= 22+/ - unify s/YES/yes/ - cleanup APACHE_VERSION <= 22 usage - add entry to MOVED with hat apache@ Notes: svn path=/head/; revision=302724
* - Mark manual package builds b/c of httpd configure requirementsPhilip M. Gollucci2010-11-111-0/+1
| | | | Notes: svn path=/head/; revision=264386
* mod_whatkilledus is an experimental module for Apache httpd 2.x whichPhilip M. Gollucci2010-11-113-0/+66
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 <fw at moov.de> Notes: svn path=/head/; revision=264384