[@clerk/nextjs v7]: auth.protect() in Next.js 16 proxy redirects to current URL instead of sign-in page
@jacekradko arbeitet bereits daran.
Seit 13.5.2026.
Bewertung
Dieses Issue wurde noch nicht bewertet.
Beschreibung
Description
When using auth.protect() inside clerkMiddleware in a Next.js 16 app (proxy/Node.js runtime), unauthenticated users are redirected back to the current page URL instead of the sign-in page. Route protection is effectively bypassed — unauthenticated users can access protected pages.
Root Cause
Clerk resolves the sign-in redirect URL via NEXT_PUBLIC_CLERK_SIGN_IN_URL through process.env in two places:
clerkMiddleware.js:
const SIGN_IN_URL = process.env.NEXT_PUBLIC_CLERK_SIGN_IN_URL || "";
const signInUrl = resolvedParams.signInUrl || SIGN_IN_URL;
utils.js (handleMultiDomainAndProxy):
const signInUrl = (opts?.signInUrl) || SIGN_IN_URL;
return { proxyUrl, isSatellite, domain, signInUrl };
This signInUrl is spread over resolvedOptions in createAuthenticateRequestOptions, so requestState.signInUrl ends up as "" when the env var is unavailable.
In handleControlFlowErrors, when auth.protect() throws a sign-in redirect error, Clerk calls:
createRedirect({ signInUrl: requestState.signInUrl, baseUrl: clerkRequest.clerkUrl, ... })
.redirectToSignIn({ returnBackUrl })
With signInUrl = "", new URL("", "https://example.com/dashboard") resolves to https://example.com/dashboard — the current page — and the user is never redirected to sign-in.
Why NEXT_PUBLIC_CLERK_SIGN_IN_URL is unavailable in the proxy
In Next.js 16, the proxy runs in the Node.js runtime (previously Edge in Next.js ≤15). NEXT_PUBLIC_* variables are inlined at build time into browser bundles, but in the Node.js proxy context they must be available via process.env at runtime. This works in standalone Next.js apps where next dev runs from the project root and loads .env files directly. In monorepo setups (e.g. pnpm workspaces + Turbo), process.env.NEXT_PUBLIC_CLERK_SIGN_IN_URL is not reliably populated in the proxy runtime, so SIGN_IN_URL falls back to "".
This was confirmed by testing with @clerk/nextjs 7.0.8 and 7.0.12 — both versions exhibit the same behavior. It is NOT a version regression.
Environment
@clerk/nextjs: 7.0.8, 7.0.12 (both affected)next: 16.2.2 (proxy/Node.js runtime —proxy.tsreplacesmiddleware.ts)- pnpm workspaces + Turbo monorepo
Steps to Reproduce
- Create a Next.js 16 app inside a pnpm workspace monorepo
- Add
proxy.tswith standard route protection:
import { clerkMiddleware, createRouteMatcher } from "@clerk/nextjs/server";
const isPublicRoute = createRouteMatcher(["/sign-in(.*)", "/sign-up(.*)"]);
export default clerkMiddleware((auth, request) => {
if (!isPublicRoute(request)) {
auth.protect();
}
});
- Set
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-inin.env - Run via Turbo (
turbo run dev) - Open an incognito window and navigate to a protected route
Expected Behavior
Unauthenticated users are redirected to /sign-in.
Actual Behavior
Error: NEXT_REDIRECT
digest: 'NEXT_REDIRECT;replace;https://example.com/dashboard;307;',
clerk_digest: 'CLERK_PROTECT_REDIRECT_TO_SIGN_IN',
returnBackUrl: 'https://example.com/dashboard'
The page renders normally — protected content visible to unauthenticated users.
Workaround
Bypass auth.protect() and redirect manually using NextResponse.redirect():
import { clerkMiddleware, createRouteMatcher } from "@clerk/nextjs/server";
import { NextResponse } from "next/server";
const isPublicRoute = createRouteMatcher(["/sign-in(.*)", "/sign-up(.*)"]);
export default clerkMiddleware(async (auth, request) => {
if (!isPublicRoute(request)) {
const { userId } = await auth();
if (!userId) {
return NextResponse.redirect(new URL("/sign-in", request.url));
}
}
});
- Vorherrschende Sprache
- TypeScript
- Sterne
- 1.8k
- Forks
- 472
- Ø Merge
- 2 T. 12 Std.
- Gemergte PRs (30 T.)
- 222
Beitragsleitfaden
Erste Schritte
- Lesen Sie das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreiben Sie ins Issue, dass Sie es übernehmen — das erspart doppelte Arbeit.
- Forken Sie das Repository und arbeiten Sie in einem Branch.
- Öffnen Sie einen Pull Request, der die Issue-Nummer nennt.
Mehr aus clerk/javascript
-
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 74/100
clerk/javascript#9611 · 1 Kommentar ·
-
clerk/javascript#9891 · 1 zugewiesene Person ·
-
Schwierigkeit 4/5 3-5 Tage Anfängerfreundlichkeit 64/100
clerk/javascript#9775 · 1 Kommentar ·
-
Schwierigkeit 4/5 3-5 Tage Anfängerfreundlichkeit 48/100
clerk/javascript#9770 · 3 Kommentare ·
-
Schwierigkeit 3/5 1-2 Tage Anfängerfreundlichkeit 68/100
clerk/javascript#9667 · 1 Kommentar ·
Alle Issues in clerk/javascript
Ähnliche Issues
-
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 70/100
-
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 75/100
mksglu/context-mode#1200 ·
-
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 75/100
jaegertracing/jaeger-ui#4506 ·
-
area:desktop area:ui bug platform:macos
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 75/100
anthropics/claude-code#96687 ·
-
good first issue
Schwierigkeit 1/5 Unter einer Stunde Anfängerfreundlichkeit 95/100
AOSSIE-Org/DebateAI#582 · 2 Kommentare ·