From 9682df7d0a494f7e12fcccc4ed31ba5e36628dbc Mon Sep 17 00:00:00 2001 From: Glen Robson Date: Fri, 17 May 2024 12:58:26 +0100 Subject: [PATCH] Adding proxy for IA download resources --- nginx-vhost.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nginx-vhost.conf b/nginx-vhost.conf index bf7645e..f9ca165 100644 --- a/nginx-vhost.conf +++ b/nginx-vhost.conf @@ -37,4 +37,9 @@ server { # Reverse proxy with the variables captured above proxy_pass https://cantaloupe.prod.archive.org/iiif/$1/$2; } + + location /iiif/resource/ { + # https://archive.org/download/cruz-test/cruz-test.af.vtt + proxy_pass https://archive.org/download/; + } }