From 4a2c35c81be03445e20937b464b01b26e1815e89 Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 30 Aug 2022 16:50:31 +0200 Subject: [PATCH] [ops] Add missing unfurl nginx route --- production/nginx/server-common.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/production/nginx/server-common.conf b/production/nginx/server-common.conf index 6ce34c2c3..26e81f7fa 100644 --- a/production/nginx/server-common.conf +++ b/production/nginx/server-common.conf @@ -48,6 +48,9 @@ add_header Vary Cookie; # for exact / requests, redirect based on $lang # cache redirect for 5 minutes location = / { + if ($unfurlbot) { + proxy_pass $mempoolSpaceUnfurler; + } if ($lang != '') { return 302 $scheme://$host/$lang/; }