
This avoids needing to conditionally add nopush to each preloaded resource in the Link header. There's also no support for pushing JavaScript modules via http2_push_preload since nginx doesn't have support for rel=modulepreload.
7 lines
463 B
Plaintext
7 lines
463 B
Plaintext
add_header Link "<{{path|/main.css}}>; rel=preload; as=style; integrity={{integrity|/main.css}}, </fonts/roboto-v29-regular-latin.woff2>; rel=preload; as=font; crossorigin, </fonts/roboto-v29-bold-latin.woff2>; rel=preload; as=font; crossorigin, <{{path|/mask-icon.svg}}>; rel=preload; as=image" always;
|
|
add_header Set-Cookie $push_cookie always;
|
|
http2_push $push_stylesheet;
|
|
http2_push $push_font_regular;
|
|
http2_push $push_font_bold;
|
|
http2_push $push_mask_icon;
|