• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Hardening Wordpress on Plesk with Nginx

BizMarquee

Basic Pleskian
I've got Wordpress running with permalinks no problem using pure NGinx, but have one major issue and that is security. Usually with Wordpress I use an .htaccess file to block any .php file from running in the uploads folder. I found this directive from several resources:

location ~* /(?:uploads|files)/.*.php$ {
deny all;
access_log off;
log_not_found off;
}

However, when I plug it into Plesk's window for the nginx directives and save it, it has no effect and php runs just fine in the uploads folder.

Has anyone gotten this to work somehow? Or am I putting this code in the wrong place?
 
.htaccess rewrite rules are different then nginx rewrite rules. There is an extention that is called "htaccess to nginx" to "Convert apache htaccess rewrite rules to nginx rewrite rules automatically."

maybe that is what you need?

regards
Jan
 
Nope, the rewrites for the pages and permalinks work great with that extension, it's the restricting of executing PHP in the uploads folder that I can't seem to make happen.
 
Ah that makes sense! Thanks! Speed needs to be sacrificed for security, but security is more important, to me.
 
Back
Top