mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-03-22 09:49:20 -07:00
add nginx proxy timeout example
@@ -121,6 +121,16 @@ server {
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
If you run into 504 Gateway Timeout problems, tell nginx to wait longer for vaultwarden by adding longer timeouts to the `server {` section, for example:
|
||||
|
||||
```nginx
|
||||
proxy_connect_timeout 777;
|
||||
proxy_send_timeout 777;
|
||||
proxy_read_timeout 777;
|
||||
send_timeout 777;
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
|
||||
Reference in New Issue
Block a user