limit_conn_zone Nginx未知错误

时间:2014-04-04 22:11:36

标签: nginx limit directive connection zone

我在这里做错了什么?

    http {
             limit_conn_zone $binary_remote_addr zone=one:63m;

            server {
                 location /downloads/ {
                  limit_conn one 10;}

[root@batman1 ~]# service nginx configtest
nginx: [emerg] the size 66060288 of shared memory zone "one" conflicts with already declared size 0 in /etc/nginx/nginx.conf:60
nginx: configuration file /etc/nginx/nginx.conf test failed

1 个答案:

答案 0 :(得分:0)

THX!

我解决了我的错过配置。

只改变我的位置到决赛。

在nginx.conf中,我将指令limit_conn_zone放在include之后。

并导致错误。

移动include指令全部解决。