Skip to content

Instantly share code, notes, and snippets.

View robertmindroi's full-sized avatar
🎯
Focusing

Robert Mindroi robertmindroi

🎯
Focusing
View GitHub Profile
@nfsarmento
nfsarmento / nginx-wordpress.conf
Last active November 5, 2024 05:23
Harden wordpress security nginx
############ WordPress ####################
# Disable logging for favicon and robots.txt
location = /favicon.ico {
try_files /favicon.ico @empty;
access_log off;
log_not_found off;
expires max;
}