Report this

What is the reason for this report?

trying to secure my application & wordpress upload folder but no luck :(

Posted on October 17, 2016

hi, i was trying to secure my wordpress site and applications upload folder with the following command but its not working. i can still upload those denied file types. can somebody tell me what im doing wrong here?

location ~* ^/upload/directory/.*.(html|htm|shtml|php|js|swf)$ { deny all; }



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

The deny all option tells the web server what types of files it should not serve in this case. This setting should prevent files of those types from being displayed but not from being uploaded. If you want to restrict file upload types this would need to be done in the application processing the uploads, in this case, WordPress. You may want to investigate plugins that will give you the ability to restrict uploads in this way.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.