-
Notifications
You must be signed in to change notification settings - Fork 27k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cache-Control headers set in next.config.js are overwritten #22319
Comments
Related: #19914 |
This would fix the issue: But seems to run against the grain of the documentation:
@timneutkens reasonable defaults are great, but it seems like there should be a way to easily override something like a |
it works for me on [email protected] - all images served from public directory with cache control header at async headers() {
return [
{
source: '/:all*(svg|jpg|png)',
locale: false,
headers: [
{
key: 'Cache-Control',
value: 'public, max-age=9999999999, must-revalidate',
}
],
},
]
}, |
Any news on this? I have an api endpoint that produces images and I want to cache them on the client. Why can't I specify the desired cache-control headers? When the documentation says
makes too many assumptions on the user use-case. |
@FDiskas I voted for that one, but it's not exactly the same issue. That is specific for the images through next/image I guess, this is for anything |
Take a look at my example in the comments, this works on production as well |
This is a considerable unchangeable default can cause pages to be stale up to 1 years for CDNs, which is bonkers(!) Also note that |
- Closes #23328 - Related to #19914 - Related to #22319 ## Feature - [x] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [x] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [x] Errors have helpful link attached, see `contributing.md`
In a previous PR (#27200), we added `minimumCacheTTL` to configure the time-to-live for the cached image. However, this was setting the `max-age` header. This PR ensures that `minimumCacheTTL` doesn't affect browser caching, only the upstream header can affect browser caching. This is a bit safer in case the developer accidentally caches something that shouldn't be and the cache needs to be invalidated. Simply delete the `.next/cache/images` directory. - Related to #19914 - Related to #22319
- Closes vercel#23328 - Related to vercel#19914 - Related to vercel#22319 ## Feature - [x] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [x] Related issues linked using `fixes #number` - [x] Integration tests added - [x] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [x] Errors have helpful link attached, see `contributing.md`
) In a previous PR (vercel#27200), we added `minimumCacheTTL` to configure the time-to-live for the cached image. However, this was setting the `max-age` header. This PR ensures that `minimumCacheTTL` doesn't affect browser caching, only the upstream header can affect browser caching. This is a bit safer in case the developer accidentally caches something that shouldn't be and the cache needs to be invalidated. Simply delete the `.next/cache/images` directory. - Related to vercel#19914 - Related to vercel#22319
Big +1 here – when using
No matter what we put in |
I'm flabbergasted by:
Sane defaults would be one thing. But this is just nuts. Please, maintainers, provide some way to opt out of this heavy-handed, unpredictable, one-size-fits-some behavior. |
Was quite disappointed to find this out.
I'm using CDN-Cache-Control header to overwrite CDN s-maxage, but it's frustrating we can't control resources headers 👎 |
…37625) In a previous PR (#34075), the ISR behavior was introduced to the Image Optimization API, however it changed the cache-control header to always set maxage=0. While this is probably the right behavior (the client shouldn't cache the image), it introduced a regression for users who have CDNs in front of a single Next.js instance (as opposed to [multiple Next.js instances](https://nextjs.org/docs/basic-features/data-fetching/incremental-static-regeneration#self-hosting-isr)). Furthermore, the pros of client-side caching outweight the cons because its easy to change the image url (add querystring param for example) to invalidate the cache. This PR reverts the cache-control behavior until we can come up with a better long-term solution. - Fixes #35987 - Related to #19914 - Related to #22319 - Closes #35596
Is there truly no way to set your own Would a middleware potentially work for getStaticProps pages? Does that fire for all requests for static pages, even when the page is still fresh? If so, will setting response headers still work with the new middleware? The default for getStaticProps pages seems like quite the footgun: unlike every other page, it automatically adds a very high default s-maxage -- don't forget, or that page could be stuck in your CDN forever! |
Really frustrating. Seeing bugs with ISR pages that will sometimes default to |
My nextJS is v11. Did not work for me. Still got some other max-age rather than this one. |
Hi, I'm having the same issue with a nex.js website with a static build hosted on S3.
In network tab I end up with Request Headers |
We've spent a week trying to fix this issue. The app is broken for thousands of CodeAlly users because of this behavior. We need an option to set the cache header or we can't deliver the product in any shape or form. Please. |
I deployed my app using the standalone option to create a server.js file, and then deployed it using Docker. I'm not sure if this is the best method, but it works as I want, so I'm sharing it. When building with the Dockerfile, add the following command:
The 'sed' command is similar to JavaScript's replace, which finds the text you want and replaces it with another. In the node_modules/next/dist/server/next-server.js file, you can see that the Cache-Control header is overridden as 'public, max-age=31536000, immutable'. (Search for the setImmutableAssetCacheControl function.) You can change this code to the cache mode you want. I changed it to use the 'no-cache, no-store, must-revalidate' option. Below is my complete Dockerfile. FROM node:18-alpine AS base
FROM base AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
RUN \
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
elif [ -f package-lock.json ]; then npm ci; \
elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \
else echo "Lockfile not found." && exit 1; \
fi
FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN yarn build
FROM base AS runner
WORKDIR /app
ENV NODE_ENV production
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
COPY --from=builder /app/public ./public
RUN mkdir .next
RUN chown nextjs:nodejs .next
RUN yarn global add pm2
RUN npm install sharp
COPY ecosystem.config.js ./ecosystem.config.js
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
USER nextjs
EXPOSE 9300
ENV PORT 9300
ENV HOSTNAME "0.0.0.0"
RUN sed -i 's/public, max-age=31536000, immutable/no-cache, no-store, must-revalidate/' ./node_modules/next/dist/server/next-server.js
CMD ["pm2-runtime", "start", "ecosystem.config.js"] |
RE: @joekur
It does look that Next.js cache headers approach is mainly implemented based on what is true on Vercel platform, as is biased in some way or another. It's indeed an important point that Vercel does invalidate cache much better across deploys, being a highly tailored hosting solution for Next.js, while other CDN services are much more generic purpose and in some cases implementation specifics get in a way of what Next.js output as default. As different CDN vendors implement their infra differently, and many features that present in the HTTP spec, are either implemented differently across the board, or not supported at all, it's very hard to navigate this topic for different circumstances. I do wish that Next.js power users could have an ability to override cache headers, and I'm continuously surprised how is this not addressed over the years people been facing these issue. I guess the % of people who care about efficient caching on self-hosted Next.js is still too small and it's easy to get lost in the topic. But with more enterprise adoption, I'm sure Next.js will be forced to give more controls, as I don't see any reason not doing this. I'm currently working on some articles to cover some Next.js self host issues, to be covered in FocusReactive blog. Hoping to get to the bottom of this at some point. Chipping in on the solutions options on how things stand right now (what I'll also cover in articles in more detail) - you can partially override some cache headers, for example for fully static pages without data fetching, despite what Next.js docs state. And the option we chose is to add CDN specific cache control headers that are respected by Fastly over the default cache control - |
Not ideal, but we ended up working around this limitation by using a custom server and monkey-patching the http const originalWriteHead = res.writeHead;
res.writeHead = (...args) => {
res.setHeader(
'Cache-Control',
'private, no-cache, no-store, max-age=0, must-revalidate',
);
return originalWriteHead.apply(res, args);
} Of course if Next ever changes their implementation to not call This solution fully turns off CDN and local caching for all HTML requests, which for us 1. ensures that middleware will always get run, 2. removes some of the undesirable caching behavior when you mix ISR with a CDN cache, and 3. fixes the issue where static routes were getting cached for a full year causing newly deployed changes to never be seen. |
running across this issue while looking for a way to cache with origin headers in Google's Cloud CDN, which requires 'Cache-Control' to be set with maxage. Really disappointing this hasn't been addressed. |
Just coming across this bug myself - this seems like a major issue in such a "high profile" framework like NextJS. Honestly, it is very concerning that this wasn't addressed years ago, as this affects anybody self-hosting with truly static pages (i.e. not using revalidate). Anytime you push a new update to your server, the changes won't actually take place since the cache-control headers have caused intermediary cdn's (and proxies!!) to cache the prior version. Major L. Of course, one can just purge their cdn after updating their server (and hopefully your cdn hasn't been forwarding your cache-control headers...), but what if one doesn't have a cdn sitting in front of their server? Then anybody accessing your site through a proxy will receive old pages for a whole entire year (since s-maxage applies to any shared caches, and a proxy is a shared cache). Wild that this issue actually exists in this framework, I am bewildered that this is the default behavior, and that there is no way to opt-out of it. |
Same issue as others, we noticed our GCP Cloud Run + CDN site was breaking after we deployed changes because the HTML had references to code that was no longer available. Eventually realised that CDN was caching our statically generated home page (for up to a year??) and that when we rebuild the site on deploy it would cause some file hashes to be change and 404s from the stale HTML trying to fetch them anyways. Our solution so far has been an entirely unnecessary switch from SSG to SSR because there's just no practical way to override the cache header without us migrating our infrastructure. This is honestly such a mind boggling decision by the Vercel team, and at this point the super opinionated roadblocks that I've hit in adopting NextJS have been enough for me to start recommending against it to other devs considering it. |
@joekur where did you apply this code? Are you using app or pages router? |
@lhguerra in a custom server, before handing off the request to the |
Hm that's what I was afraid of, this won't work in app router :/ |
@AdamZaczek Answering a year later, but maybe it will be useful for you or the others :) You might have (or might have not) been confused, but Cache-Control is also overridden for assets (CSS, JS, Fonts, Images..) on the dev server, which will ignore the fix by @u3u. Noting it down here for no one to spend their time on looking for a fix. It can be fixed by extending patch to include development config:
While the patch above will fix the issues in production, this one will do the thing during development Note: version of NextJS used is 12.2.5 |
Still experiencing this issue in v14 |
We are finding this a major hurdle that we cannot control the |
Allow me to add to the growing chorus of people affected by this issue. Looking to implement a solution similar to @joekur above, but truly disheartening to see how many people are facing this issue and the lack of response from Vercel, particularly with an active pull request. |
Below is a workaround which will let you set a header from Next.js middleware and then rewrite the function cacheControlMiddleware(): NextResponse | undefined {
const response = NextResponse.next();
response.headers.set(
"X-Cache-Control-Override",
"public, max-age=60, s-maxage=60, stale-while-revalidate=3600, stale-if-error=86400",
);
return response;
} http {
map $upstream_http_x_cache_control_override $cache_control_override {
default $upstream_http_cache_control;
"~.+?" $upstream_http_x_cache_control_override;
}
server {
# ...
location / {
proxy_pass http://127.0.0.1:3000;
# ...
proxy_hide_header Cache-Control;
proxy_hide_header X-Cache-Control-Override;
add_header Cache-Control $cache_control_override;
}
} |
How would we set this custom Nginx configuration at Vercel? |
What about an optional field in the Alternatively another function in the same vein as |
It's really discouraging that this issue is still open without a fix. This is costing us a lot of money every time Google crawls our website... In my case, it's the exact same issue as: #62294 |
Hi, this has now landed in |
@cbratschi duplicate headers sounds like a different issue, this one was about them being overwritten entirely. |
This closed issue has been automatically locked because it had no new activity for 2 weeks. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you. |
What version of Next.js are you using?
10.0.7, 10.0.8-canary.3
What version of Node.js are you using?
15.8.0
What browser are you using?
curl, Chrome
What operating system are you using?
macOS
How are you deploying your application?
next start
Describe the Bug
Custom
Cache-Control
headers configured innext.config.js
are overwritten in some cases. It looks any page that usegetStaticProps
will have their cache headers overwritten withCache-Control: s-maxage=31536000, stale-while-revalidate
which seems to come fromnext.js/packages/next/next-server/server/send-payload.ts
Line 34 in 80c9522
Expected Behavior
When we configure a
Cache-Control
header, don't set it to something else.To Reproduce
Starting from
yarn create next-app --example headers headers-app
, here's a sample project that demonstrates the bug:https://github.com/hartshorne/headers-app
You can clone the project, and run something like
yarn build && yarn start
to start it in production mode. (dev mode overwrites allCache-Control
headers to prevent the browser from caching during development, which makes sense.)Here's the
next.config.js
: https://github.com/hartshorne/headers-app/blob/main/next.config.jsHere's
props.js
(which exportsgetStaticProps
) – this is broken: https://github.com/hartshorne/headers-app/blob/main/pages/props.jsHere's
static.js
— this works: https://github.com/hartshorne/headers-app/blob/main/pages/props.jsNote that X-Custom-Header comes through, but the
Cache-Control
header is overwritten. Same behavior in Chrome, and with a regular GET request.The text was updated successfully, but these errors were encountered: