mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-16 15:01:34 +01:00
Add Pound reverse proxy example
parent
7e00910894
commit
2c217ca992
1 changed files with 39 additions and 0 deletions
|
@ -1001,3 +1001,42 @@ Example dashboard URL to find the settings: `https://dash.cloudflare.com/xxxxxx/
|
||||||
|
|
||||||
![Rules](https://github.com/dani-garcia/vaultwarden/assets/7784660/e27d9152-219b-4b6a-bf96-dcfce30ebd73)
|
![Rules](https://github.com/dani-garcia/vaultwarden/assets/7784660/e27d9152-219b-4b6a-bf96-dcfce30ebd73)
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>Pound</summary><br/>
|
||||||
|
|
||||||
|
```
|
||||||
|
Alive 15
|
||||||
|
|
||||||
|
ListenHTTP
|
||||||
|
Address 127.0.0.1
|
||||||
|
Port 80
|
||||||
|
xHTTP 3
|
||||||
|
HeadRemove "X-Forwarded-For"
|
||||||
|
Service
|
||||||
|
Host "vaultwarden.example.tld"
|
||||||
|
Redirect 301 "https://vaultwarden.example.tld"
|
||||||
|
End
|
||||||
|
End
|
||||||
|
|
||||||
|
ListenHTTPS
|
||||||
|
Address 127.0.0.1
|
||||||
|
Port 443
|
||||||
|
Cert "/path/to/certificate/letsencrypt/live/vaultwarden.example.tld/fullchain.pem"
|
||||||
|
xHTTP 3
|
||||||
|
AddHeader "Front-End-Https: on"
|
||||||
|
RewriteLocation 0
|
||||||
|
HeadRemove "X-Forwarded-Proto"
|
||||||
|
AddHeader "X-Forwarded-Proto: https"
|
||||||
|
End
|
||||||
|
|
||||||
|
Service
|
||||||
|
Host "vaultwarden.example.tld"
|
||||||
|
BackEnd
|
||||||
|
Address <SERVER>
|
||||||
|
Port 80
|
||||||
|
End
|
||||||
|
End
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
Loading…
Reference in a new issue