As some of you may know, nginx does not work with mod rewrite, and therefor it does not work with any htaccess rewrite rules you may have.
You can have nginx load your wordpess using below rule to replace the original htaccess:
location / {
try_files $uri $uri/ /index.php?$args;
}