Skip to content

Instantly share code, notes, and snippets.

@mintymedia
mintymedia / nginx.conf
Created September 6, 2022 06:31
Wordpress nginx htaccess
client_max_body_size 8M;
# This order might seem weird - this is attempted to match last if rules below fail.
location / {
try_files $uri $uri/ /index.php?$args;
}
# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;