You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Disallow these update scripts as they are not used in current workflow, Drupal 7/8.
location ~ ^/(update.php|core/update.php) {
return 404;
}
## Disallow these install cripts as they are not used in current workflow, Drupal 7/8.
location ~ ^/(install.php|core/install.php) {
return 404;
}
It seems unnecessary, because of this:
## Any other attempt to access PHP files returns a 404.
location ~* ^.+\.php$ {
return 404;
}
In case of the latter, the RX can be made faster:
location ~* \.php$ {
The text was updated successfully, but these errors were encountered:
https://wunder.slack.com/archives/CAC0EPL1G/p1597852312006400?thread_ts=1597852274.006300&cid=CAC0EPL1G
It seems unnecessary, because of this:
In case of the latter, the RX can be made faster:
The text was updated successfully, but these errors were encountered: