webinoly/templates/nginx/common/wpcommon.conf

41 lines
908 B
Plaintext
Raw Normal View History

# WordPress COMMON SETTINGS
# DO NOT MODIFY, ALL CHANGES LOST AFTER UPDATE Webinoly
# Limit access to avoid brute force attack
# https://baraktawily.blogspot.com/2018/02/how-to-dos-29-of-world-wide-websites.html
2018-06-28 00:29:55 +00:00
location /wp-admin {
location ~ /wp-admin/admin-ajax.php$ {
limit_req zone=wp burst=6 nodelay;
2018-06-28 00:29:55 +00:00
include fastcgi_params;
fastcgi_pass php;
}
location ~* /wp-admin/.*\.php$ {
limit_req zone=wp burst=6 nodelay;
2018-06-28 00:29:55 +00:00
include common/acl.conf;
include fastcgi_params;
fastcgi_pass php;
}
}
location = /wp-login.php {
limit_req zone=one burst=1 nodelay;
include common/acl.conf;
include fastcgi_params;
fastcgi_pass php;
}
# Disable wp-config.txt
location = /wp-config.txt {
deny all;
access_log off;
log_not_found off;
}
# Disallow php in upload folder
location /wp-content/uploads/ {
location ~ \.php$ {
#Prevent Direct Access Of PHP Files From Web Browsers
deny all;
}
}