Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在探索将所有文件上传路由到清漆中的给定后端。显而易见的方法是匹配可以发布到的 url,但我也想尝试配置一个包罗万象的方法,它将路由我们在 url 匹配中遗漏的任何内容。
是否有可能可靠地做到这一点?
在我思考这个问题时,我突然想到要检查
req.http.Content-Type ~ "multipart/form-data"
在 vcl_recv 中应该是一种可靠的方法来做到这一点。
编辑:这似乎在我需要执行此操作的上下文中捕获了 90% 的上传。