例如 vue 项目打包后,在 /js 或者 /css 包中有许多资源,想通过 server push 直接推给浏览器,那么改如何写配置呢? nginx 官方说:
Pre-emptively sends (pushes) a request to the specified uri along with the response to the original request. Only relative URIs with absolute path will be processed, for example:
http2_push /static/css/main.css;
The uri value can contain variables.
uri 可以包含变量,这里的变量是怎么个写法呢,是指“*”这样的匹配方式吗,能将 /js 或 /css 中的部分资源进行推送吗?