feat: Enhance Directus URL resolution for internal and proxy paths, and adjust Traefik host variable interpolation.
Some checks failed
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 39s
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Successful in 1m33s
Build & Deploy KLZ Cables / 🏗️ Build Gatekeeper (push) Successful in 22s
Build & Deploy KLZ Cables / 🏗️ Build App (push) Successful in 4m47s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Successful in 48s
Build & Deploy KLZ Cables / ⚡ PageSpeed (push) Failing after 3m50s
Build & Deploy KLZ Cables / 🔔 Notifications (push) Successful in 2s

This commit is contained in:
2026-02-06 11:29:10 +01:00
parent d438dbdc9d
commit c70288bba7
5 changed files with 21 additions and 15 deletions

View File

@@ -8,7 +8,7 @@ const intlMiddleware = createMiddleware({
locales: ['en', 'de'],
// Used when no locale matches
defaultLocale: 'en'
defaultLocale: 'en',
});
// Main middleware that logs all requests
@@ -20,7 +20,7 @@ export default function middleware(request: NextRequest) {
const ip = headers.get('x-forwarded-for') || headers.get('x-real-ip') || 'unknown';
// Log incoming request
console.log(`Incoming request: method=${method} url=${url}`);
console.log(`Incoming request: method=${method} host=${headers.get('host')} url=${url}`);
try {
// Apply internationalization middleware
@@ -34,5 +34,5 @@ export default function middleware(request: NextRequest) {
export const config = {
// Match only internationalized pathnames
matcher: ['/((?!api|_next|_vercel|health|.*\\..*).*)', '/', '/(de|en)/:path*']
matcher: ['/((?!api|_next|_vercel|health|.*\\..*).*)', '/', '/(de|en)/:path*'],
};