diff --git a/production/nginx/server-common.conf b/production/nginx/server-common.conf index 1d1bcbcd1..8c2f2bcea 100644 --- a/production/nginx/server-common.conf +++ b/production/nginx/server-common.conf @@ -65,6 +65,9 @@ location ~ ^/([a-z][a-z])/(.+\..+\.(js|css)) { } # cache everything else for 5 minutes location ~ ^/([a-z][a-z])$ { + if ($unfurlbot) { + proxy_pass $mempoolSpaceUnfurler; + } try_files $uri /$1/index.html /en-US/index.html =404; expires 5m; }