mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-01-16 20:50:33 +00:00
Add Pound reverse proxy example
@@ -1001,3 +1001,42 @@ Example dashboard URL to find the settings: `https://dash.cloudflare.com/xxxxxx/
|
||||
|
||||

|
||||
</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>
|
||||
Reference in New Issue
Block a user