-
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
Can't access just uploaded image #58169
Comments
Next.js does not support writing files into the |
That's for sure reasonable, but what is the right way to upload files in Next.js that should be available publicly after uploading? Most of the tutorials I found in the internet uploads files in |
Hi, |
This is a bad experience. When building a CMS or blog, the need to publish articles is very common. It is necessary to upload the file to the public. |
"Next.js does not support writing files into the public folder at runtime to prevent certain attack vectors like path traversal. The reason it works in development is that you have to be able to add files that are served immediately."So can we provide an option to control it? @timneutkens |
The only way I found is to upload files to another host. For example we have CMS on website.com, create subdomain like media.website.com and upload files there. Can't really understand why there is no replies here, it seems nobody use Next.JS as a CMS or live uploading files solution in production. |
As said it's expected that you can't upload to public to have those automatically served. We're not planning to provide an option to disable this protection as that was used to bypass (and introduce directory traversal) multiple times in the past. Our recommendation is:
|
Ok, but I doesn't ask to disable this protection, just a way to update the folder content in order that the new uploaded files are available. In relation to your recommendations, is it possible to provide an example of "Add file serving through i.e. route.ts" or the documentation page to learn how to do this, if you mean that it is possible to serve files that are located in the project folder, please ? Thank you |
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. |
Link to the code that reproduces this issue
https://codesandbox.io/p/sandbox/inspiring-sara-8hcy56
To Reproduce
start
command<form>
or put it manually directly to the/public
folderCurrent vs. Expected behavior
Expected: image display correctly
Current: If open it directly in the browser: 404 this page could not be found, otherwise 400 Bad Request (The requested resource isn't a valid image.). Console says: The requested resource isn't a valid image for /uploads/products_18_gallery_1_1699416826325.jpeg received text/html; charset=utf-8
Verify canary release
Provide environment information
Which area(s) are affected? (Select all that apply)
Not sure, Image optimization (next/image, next/legacy/image), Routing (next/router, next/navigation, next/link)
Additional context
Important, that If I restart the app those previously uploaded images finally displays and there is no 400/404 error. I upload images in /public/uploads directory.
This problem happens only in production mode (npm run build, npm run start). There is no such problem when I work with it in dev mode (npm run dev).
The text was updated successfully, but these errors were encountered: