From 85e89f2bd4be31c6b8c4548dd0cc9dd0312b37d1 Mon Sep 17 00:00:00 2001 From: Melissa Boiko Date: Wed, 11 Aug 2021 23:42:54 +0200 Subject: [PATCH] add nginx proxy timeout example --- Proxy-examples.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Proxy-examples.md b/Proxy-examples.md index 07fc7c5..2c5bab7 100644 --- a/Proxy-examples.md +++ b/Proxy-examples.md @@ -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; +``` +