0

我在这里做错了什么?

    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
4

1 回答 1

0

谢谢!

我解决了我的错过配置。

只有改变我的位置才能进入决赛。

在 nginx.conf 上,我将指令 limit_conn_zone 放在包含之后。

这会导致错误。

移动 include 指令就解决了。

于 2014-04-07T17:18:15.717 回答