Compare commits
3 Commits
v1.2.11-rc
...
v1.2.12
| Author | SHA1 | Date | |
|---|---|---|---|
| 9de3931e33 | |||
| b10dbcb23f | |||
| 65bb9c620a |
@@ -57,7 +57,7 @@ jobs:
|
||||
|
||||
- name: 🧪 QA Checks
|
||||
env:
|
||||
TURBO_TELEMETRY_DISABLED: 1
|
||||
TURBO_TELEMETRY_DISABLED: "1"
|
||||
run: npx turbo run check:mdx lint typecheck test --cache-dir=".turbo"
|
||||
|
||||
- name: 🏗️ Build
|
||||
|
||||
@@ -185,7 +185,7 @@ jobs:
|
||||
- name: 🧪 QA Checks
|
||||
if: github.event.inputs.skip_checks != 'true'
|
||||
env:
|
||||
TURBO_TELEMETRY_DISABLED: 1
|
||||
TURBO_TELEMETRY_DISABLED: "1"
|
||||
run: npx turbo run lint check:spell typecheck test --cache-dir=".turbo"
|
||||
|
||||
# ──────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
@@ -42,7 +42,9 @@ CMD ["pnpm", "dev:local"]
|
||||
# Stage 3: Builder (Production)
|
||||
FROM base AS builder
|
||||
RUN --mount=type=cache,target=/app/.next/cache,id=nextjs-cache \
|
||||
pnpm build
|
||||
pnpm build && \
|
||||
mkdir -p /app/.next-cache-tmp && \
|
||||
cp -r /app/.next/cache/* /app/.next-cache-tmp/ || true
|
||||
|
||||
# Stage 3: Runner
|
||||
FROM registry.infra.mintel.me/mintel/runtime:v1.7.10 AS runner
|
||||
@@ -61,6 +63,6 @@ ENV NODE_ENV=production
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/public ./public
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/cache ./.next/cache
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next-cache-tmp ./.next/cache
|
||||
|
||||
CMD ["node", "server.js"]
|
||||
|
||||
@@ -10,10 +10,38 @@ const intlMiddleware = createMiddleware({
|
||||
defaultLocale: 'en',
|
||||
});
|
||||
|
||||
export default function middleware(request: NextRequest) {
|
||||
const imgproxyStatus = { isDown: false, lastCheck: 0 };
|
||||
|
||||
async function isImgproxyDown() {
|
||||
const now = Date.now();
|
||||
if (now - imgproxyStatus.lastCheck > 60000) {
|
||||
try {
|
||||
const imgproxyUrl = process.env.IMGPROXY_URL || 'https://img.infra.mintel.me';
|
||||
const checkUrl = imgproxyUrl.startsWith('http') ? imgproxyUrl : `https://${imgproxyUrl}`;
|
||||
const res = await fetch(checkUrl, { signal: AbortSignal.timeout(2000) });
|
||||
imgproxyStatus.isDown = res.status >= 500;
|
||||
} catch (e) {
|
||||
imgproxyStatus.isDown = true;
|
||||
}
|
||||
imgproxyStatus.lastCheck = now;
|
||||
}
|
||||
return imgproxyStatus.isDown;
|
||||
}
|
||||
|
||||
export default async function middleware(request: NextRequest) {
|
||||
const { method, url, headers } = request;
|
||||
const { pathname } = request.nextUrl;
|
||||
|
||||
if (pathname.startsWith('/_img/')) {
|
||||
if (await isImgproxyDown()) {
|
||||
const originalUrl = request.nextUrl.searchParams.get('url');
|
||||
if (originalUrl) {
|
||||
return NextResponse.redirect(originalUrl);
|
||||
}
|
||||
}
|
||||
return NextResponse.next();
|
||||
}
|
||||
|
||||
// Explicit bypass for infrastructure routes to avoid locale redirects/interception
|
||||
if (
|
||||
pathname.startsWith('/stats') ||
|
||||
@@ -97,7 +125,7 @@ export default function middleware(request: NextRequest) {
|
||||
|
||||
export const config = {
|
||||
matcher: [
|
||||
'/((?!api|_next/static|_next/image|_img|favicon.ico|manifest.webmanifest|.*\\.(?:svg|png|jpg|jpeg|gif|webp|pdf|txt|vcf|xml|webm|mp4|map)$).*)',
|
||||
'/((?!api|_next/static|_next/image|favicon.ico|manifest.webmanifest|.*\\.(?:svg|png|jpg|jpeg|gif|webp|pdf|txt|vcf|xml|webm|mp4|map)$).*)',
|
||||
'/(de|en)/:path*',
|
||||
'/(de|en)/:path*',
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user