pkgsrc/www/ap-throttle/MESSAGE
grant f61e0ec21f Initial import of ap-throttle-3.1.2 into The NetBSD packages collection.
mod_throttle allows throttling of connections to the Apache web
server. It uses System V shared memory and semaphores to implement the
state information.

Provided by Eric Schnoebelen in PR pkg/20290, with some changes by me.
2003-02-16 11:19:03 +00:00

16 lines
552 B
Text

===========================================================================
$NetBSD: MESSAGE,v 1.1.1.1 2003/02/16 11:19:03 grant Exp $
In order to use this module in your Apache installation, you need to
add the following to your httpd.conf file:
LoadModule throttle_module lib/httpd/mod_throttle.so
# throttle htdocs to 100k/sec
<Directory ${PREFIX}/share/httpd/htdocs>
<IfModule mod_throttle.c>
ThrottlePolicy Speed 100k 1
</IfModule>
</Directory>
===========================================================================