A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
20 lines
533 B
TypeScript
20 lines
533 B
TypeScript
import type { NextAuthConfig } from "next-auth";
|
|
|
|
export const authConfig = {
|
|
pages: { signIn: "/login" },
|
|
providers: [],
|
|
callbacks: {
|
|
authorized({ auth, request }) {
|
|
const { pathname } = request.nextUrl;
|
|
const isPublic =
|
|
pathname === "/login" ||
|
|
pathname === "/signup" ||
|
|
pathname.startsWith("/api/auth") ||
|
|
pathname.startsWith("/_next") ||
|
|
pathname === "/favicon.ico";
|
|
if (isPublic) return true;
|
|
return !!auth?.user;
|
|
},
|
|
},
|
|
} satisfies NextAuthConfig;
|