在Apache下限制每个虚拟主机的并发数

下载模块:http://www.nowhere-land.org/programs/mod_vhost_limit/

安装:

  1. apxs -c mod_vhost_limit.c -o /path/to/libexec/mod_vhost_limit.so

在 httpd.conf 加入:

  1. LoadModule vhost_limit_module libexec/mod_vhost_limit.so
  2. AddModule mod_vhost_limit.c

配置:

  1. MaxClients 150
  2. ExtendedStatus On
  3.  
  4. NameVirtualHost *
  5.     ServerName server1
  6.     DocumentRoot /some/where/1
  7.     MaxVhostClients 100
  8.  
  9.     ServerName server2
  10.     DocumentRoot /some/where/2
  11.     MaxVhostClients 30
  12.  
  13.     ServerName server3
  14.     DocumentRoot /some/where/3

其中:server1 被限制为 100 个并发线程数。server2 被限制为 30 个并发线程数。server3 没有被限制。
注:需 mod_status 的 ExtendedStatus On 支持!!

如超出限制的并发数在客户端就会出现503错误:
Service Temporarily Unavailable
The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
——————————————————————————–

Apache/1.3.27 Server at server1 Port 80

在 error_log 中将会有类似以下的错误提示:
[Mon Jun 23 15:22:24 2003] [error] client access to server1 deferred, MaxVhostClients 100 exceeded
 

阅读全文>>

你可能感兴趣的:(在Apache下限制每个虚拟主机的并发数)