jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/391428 )
Change subject: Add .htaccess to disallow web access ...................................................................... Add .htaccess to disallow web access The /vendor directory does not need to be web accessible, and to reduce attack surface, should not be web accessible. Bug: T180237 Change-Id: I855212e10d6ff75d9778d275e0815a8ff19f1da7 (cherry picked from commit 77b6619a845993b5221dd2ff8b9fa1005fd06b04) --- M .gitignore A .htaccess 2 files changed, 1 insertion(+), 1 deletion(-) Approvals: Reedy: Looks good to me, approved jenkins-bot: Verified diff --git a/.gitignore b/.gitignore index 9d96ec6..c3d5b76 100644 --- a/.gitignore +++ b/.gitignore @@ -34,5 +34,4 @@ .settings /static* /tags -/.htaccess /.htpasswd diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..3a42882 --- /dev/null +++ b/.htaccess @@ -0,0 +1 @@ +Deny from all -- To view, visit https://gerrit.wikimedia.org/r/391428 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I855212e10d6ff75d9778d275e0815a8ff19f1da7 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/vendor Gerrit-Branch: master Gerrit-Owner: Reedy <[email protected]> Gerrit-Reviewer: Legoktm <[email protected]> Gerrit-Reviewer: Reedy <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
