Skip to content

Instantly share code, notes, and snippets.

View eddieali's full-sized avatar

Ali Jaffri eddieali

View GitHub Profile
@nfsarmento
nfsarmento / nginx-wordpress.conf
Last active July 6, 2024 20:26
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;
}