vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit 1f4edb38e6d03926b1fd6d52cfe9913ffbcfda41
parent 371017b547860a92d10764f5dc3fa2e4f3d6b98c
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Mon, 17 Dec 2018 19:29:07 +0100

Add extra headers to Nginx (#303)
Diffstat:
MPROXY.md | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/PROXY.md b/PROXY.md @@ -39,6 +39,10 @@ server { location / { proxy_pass http://<SERVER>:80; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; } location /notifications/hub {