1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

chore(installer): only serve installer in / and /install.sh

This avoids false positive detections on other bruteforced paths,
such as .zsh_history or others, which eventually result in
automated false vulnerability submissions.
This commit is contained in:
Marc Cornellà
2024-10-18 14:27:54 +02:00
parent 067558da92
commit 4ada154190

View File

@@ -1,7 +1,7 @@
{
"headers": [
{
"source": "/((?!favicon.ico).*)",
"source": "/(|install.sh)",
"headers": [
{
"key": "Content-Type",
@@ -16,7 +16,7 @@
],
"rewrites": [
{
"source": "/((?!favicon.ico|install.sh).*)",
"source": "/",
"destination": "/install.sh"
}
]