From b7ca69aa0e14fa853f40cdfdfb243990cf46efe3 Mon Sep 17 00:00:00 2001 From: Lennard Schwarz Date: Fri, 1 Dec 2023 18:31:04 +0100 Subject: [PATCH] Update realm info --- pages/api/auth/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/api/auth/auth.ts b/pages/api/auth/auth.ts index bedb39641..9bf5eef42 100644 --- a/pages/api/auth/auth.ts +++ b/pages/api/auth/auth.ts @@ -1,7 +1,7 @@ import type { NextApiRequest, NextApiResponse } from 'next' export default function handler(_: NextApiRequest, res: NextApiResponse) { - res.setHeader('WWW-authenticate', 'Basic realm="Secure Area"') + res.setHeader('WWW-authenticate', 'Basic realm="Private Area"') res.statusCode = 401 res.end(`Auth Required.`) } \ No newline at end of file