Add some security rules for wordpress

This commit is contained in:
Emilien Mantel
2016-09-03 12:43:28 +02:00
parent a2e6e98436
commit 8789bd2c9c

View File

@@ -3,3 +3,9 @@
{% block template_try_files %}
try_files $uri $uri/ /index.php?$args;
{% endblock %}
{% block template_custom_location %}
location ~* /(?:uploads|files)/.*\.php$ {
deny all;
}
{% endblock %}