nginx_ui/nginx-ui-dev/template/block/drupal-security.conf
2025-03-04 11:28:12 +00:00

18 lines
437 B
Plaintext

# Nginx UI Template Start
name = "Drupal Security"
author = "@sanvu88"
description = { en = "Drupal Security Config", zh_CN = "Drupal 安全配置", vi_VN = "Cấu hình bảo mật cho Drupal"}
# Nginx UI Template End
location ~ ((^|/)\.|^.*\.yml$|^/sites/.*/private/|^/sites/[^/]+/[^/]*settings.*\.php$) {
return 444;
}
location ~ ^/sites/[^/]+/files/.*\.php$ {
return 444;
}
location ~ /vendor/.*\.php$ {
return 444;
}