summaryrefslogtreecommitdiff
path: root/regional-currency/nginx-conf/exchange.taler-nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'regional-currency/nginx-conf/exchange.taler-nginx.conf')
-rw-r--r--regional-currency/nginx-conf/exchange.taler-nginx.conf6
1 files changed, 5 insertions, 1 deletions
diff --git a/regional-currency/nginx-conf/exchange.taler-nginx.conf b/regional-currency/nginx-conf/exchange.taler-nginx.conf
index 0f470a1..b1e9d0a 100644
--- a/regional-currency/nginx-conf/exchange.taler-nginx.conf
+++ b/regional-currency/nginx-conf/exchange.taler-nginx.conf
@@ -5,8 +5,12 @@ server {
server_name exchange.${DOMAIN_NAME};
+ # Bigger than default timeout to support long polling
+ proxy_read_timeout 6500s;
+ keepalive_requests 1000000;
+ keepalive_timeout 6500s;
+
location / {
proxy_pass http://unix:/var/run/taler/exchange-httpd/exchange-http.sock;
}
-
}