on apache I can easily add htaccess rule to deny or all wp login for particular IPs. In nginx how to do? I tried Rewrite rule converter:Apache to Nginx but it does not give any out put for below htaccess code:
<Files wp-login.php>
Order Deny,Allow
Deny from all
Allow from 11.11.11.11
</Files>