Skip to content

Instantly share code, notes, and snippets.

View eddieali's full-sized avatar

Ali Jaffri eddieali

View GitHub Profile
@eddieali
eddieali / nginx-wordpress.conf
Created March 28, 2022 16:38 — forked from nfsarmento/nginx-wordpress.conf
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;
}