Entwicklerportal
CodeGewölbe
Kostenlose Sammlung für Entwickler, Admins und Website-Betreiber: Snippets, VelinStyle-Komponenten, VelinScript-Automationen und Security-Rezepte — copy-paste-fertig.
Scanner-Pfade blocken
Typische WordPress-Scanner in Nginx abweisen.
Fortgeschritten
5 Min.
Code
location ~* ^/(wp-admin|wp-login\.php|xmlrpc\.php) {
return 444;
}