From 0fb81075e0f33cf0a115a6287ca559cd8b23357a Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Fri, 15 Jan 2021 18:59:15 +0000 Subject: [PATCH] Updated Reverse Proxying (markdown) --- Reverse-Proxying.md | 2 ++ 1 file changed, 2 insertions(+) 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;