Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
Makefile.inc | H A D | 29-Oct-2021 | 1.1 KiB | 28 | 7 | |
README.md | H A D | 29-Oct-2021 | 518 | 17 | 11 | |
server_push_preload.cc | H A D | 29-Oct-2021 | 5.4 KiB | 180 | 133 |
README.md
1Parse origin response Link headers and use H2 Server Push to initiate push requests of assets that have the preload keyword. 2 3https://www.w3.org/TR/preload/ 4 5This plugin can be used as a global plugin or a remap plugin. 6 7To use it as a global plugin for all your remaps, add this line to your `plugins.config` file: 8 9``` 10server_push_preload.so 11``` 12 13To use it as a remap plugin add it to one of your remaps in the `remap.config` file: 14 15``` 16map https://foo.cow.com/ https://bar.cow.com @plugin=server_push_preload.so 17```