diff --git a/Reverse-Proxying.md b/Reverse-Proxying.md index bf5a116..7005c07 100644 --- a/Reverse-Proxying.md +++ b/Reverse-Proxying.md @@ -20,6 +20,7 @@ server { location / { proxy_pass http://localhost:8056; # change as you need + http2_push_preload on; # Should make the page load quicker. } } ``` @@ -48,6 +49,7 @@ server { add_header Content-Security-Policy ""; proxy_pass http://localhost:8056; # Change as you need + http2_push_preload on; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr;