Skip to content

Latest commit

 

History

History
executable file
·
18 lines (14 loc) · 251 Bytes

FAQ.md

File metadata and controls

executable file
·
18 lines (14 loc) · 251 Bytes

Frequently Asked Questions

Nginx security rules

# BEGIN Fuerte-WP
location ~ wp-admin/install(-helper)?\.php {
    deny all;
}

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