如何配置apache以允许来自同一ip的同时请求

时间:2014-12-15 20:53:18

标签: php apache zend-framework2

我正在Zend Framework 2使用apache 2develop上的windowsproduction上的linux)处理项目。发送到服务器的所有请求在本地和生产时排队(在第一次结束后第二次开始)。我需要配置apache以允许来自同一个ip和浏览器的同时请求。

我没有使用基于文件的会话,因此session_write _close()无法提供帮助。这个配置有什么问题?

session.save_handler = files
session.save_path = "C:\xampp\tmp"
session.use_cookies = 1
session.cookie_secure = 1
session.use_only_cookies = 1
session.name = PHPSESSID
session.auto_start = 0
session.cookie_lifetime = 0
session.cookie_path = /
session.cookie_domain =
session.cookie_httponly = 1


<IfModule !mpm_winnt_module>
<IfModule !mpm_netware_module>
LockFile "logs/accept.lock"
</IfModule>
</IfModule>

<IfModule mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>

<IfModule mpm_worker_module>
    StartServers          2
    MaxClients          150
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>

<IfModule mpm_beos_module>
    StartThreads            10
    MaxClients              50
    MaxRequestsPerThread 10000
</IfModule>

<IfModule mpm_netware_module>
    ThreadStackSize      65536
    StartThreads           250
    MinSpareThreads         25
    MaxSpareThreads        250
    MaxThreads            1000
    MaxRequestsPerChild      0
    MaxMemFree             100
</IfModule>

<IfModule mpm_mpmt_os2_module>
    StartServers           2
    MinSpareThreads        5
    MaxSpareThreads       10
    MaxRequestsPerChild    0
</IfModule>

<IfModule mpm_winnt_module>
    ThreadsPerChild      150
    MaxRequestsPerChild    0
    #Win32DisableAcceptEx
</IfModule>

未设置ServerLimit。

1 个答案:

答案 0 :(得分:0)

来自您的浏览器或某些wget / fopen终端命令的请求。 如果它们来自浏览器,则不是服务器配置问题,但浏览器本身不允许对同一域的多个请求。