Browse Source

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.
Marc Cornellà 1 month ago
parent
commit
4ada154190
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .github/workflows/installer/vercel.json

+ 2 - 2
.github/workflows/installer/vercel.json

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