Skip to content

Instantly share code, notes, and snippets.

View mdutt247's full-sized avatar
🏠
Working from home

Madhavendra Dutt mdutt247

🏠
Working from home
View GitHub Profile
@mdutt247
mdutt247 / nginx-wordpress.conf
Created January 20, 2024 19:24 — 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;
}