ip过滤后,nginx使用下一个规则

时间:2015-08-29 15:34:00

标签: php wordpress nginx

我在nginx后面安装了一个非常典型的Wordpress,我的规则定义如下:

    location / {
            try_files $uri $uri/ /index.php?q=$uri&$args;
    }

    location ~ \.php$ {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }

现在,我想IP限制管理和登录页面,并在上面的粘贴代码之前添加以下内容:

    location ~ ^/(wp-admin|wp-login\.php) {
            allow $myip;
            deny all;
    }

这使得我只能使用指定的IP地址访问wp-admin /和wp-login.php,但最终会下载.php文件,而不是将它们代理到PHP然后返回结果。如何更改上述规则以说明只处理其余规则(即落入“location /”或“location~.php”块?

0 个答案:

没有答案