HTTP/2 服务推送

最后更新于:2022-04-02 02:54:36

[TOC] ## 服务器推送 ``` location / { root /usr/share/nginx/html; index index.html index.htm; http2_push /style.css; http2_push /example.png; } ``` - 说明: 如果用户请求根路径/,就推送style.css和example.png
';