1

I'm become the maintainer for an older Apache 1.3 development server running on a Windows XP machine. For some reason, the system won't allow more than a certain number of virtual hosts(in this case 64). I noted in Apache documentation (http://httpd.apache.org/docs/1.3/misc/FAQ.html#fdlim) that this is possibly due to File Descriptor Limits. However there doesn't seem to be any information on how to adjust this limit on more modern Windows machines. What options do I have for bypassing this limit?

Shane Madden
  • 112,982
  • 12
  • 174
  • 248
Auryn
  • 33
  • 1
  • 4

2 Answers2

1

Another option is using mod_vhost_alias

If you can find a pattern in your vhosts you could create vhost alias rules (AFAIK there is no limit there)

0

On windows they're called file handles, and the registry value is

HKLM\Software\Microsoft\Windows NT\CurrentVersion\Windows\USERProcessHandleQuota

take a backup before editing the registry!

Here is an informative post on the matter: Pushing the Limits of Windows: Handles

Andy
  • 5,190
  • 23
  • 34