I'm trying to serve the static files from a Wordpress installation and I'm using a symbolic link placed in the NGINX folder pointing to the wp-content/uploads folder.

Every file is being served correctly, but unfortunately there are some plugins that include some of their .php files inside this folder, so NGINX serve them as static files, leading to potential security risks.

Is there any way to instruct NGINX to return a Forbidden 403 error when trying to access .php files?

Thanks in advance.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You can exclude an extension under a location block using a sub location

E.G.

location /wp-content/uploads {
    location ~ \.(php|any|other|ext)$ {
        return 403;
    }

    ....

}
link|improve this answer
thanks for your answer! noob subquestion, should I just add it to the .htaccess file? It didn't work for me that way. – ZLAPPER Sep 20 '11 at 20:51
Nginx does not use htaccess files. You add the above to the nginx conf file for the site in question and reload nginx. – Dayo Sep 20 '11 at 20:57
thank you, @Dayo! – ZLAPPER Sep 20 '11 at 21:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.