From 32847074f62924aaf28ff4304e2ab15616c89151 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Mon, 29 Jul 2024 19:42:25 +1000 Subject: [PATCH] Expose history archive on `/archive` --- local/nginx/etc/conf.d/history-archive.conf | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 local/nginx/etc/conf.d/history-archive.conf diff --git a/local/nginx/etc/conf.d/history-archive.conf b/local/nginx/etc/conf.d/history-archive.conf new file mode 100644 index 000000000..736d61ff2 --- /dev/null +++ b/local/nginx/etc/conf.d/history-archive.conf @@ -0,0 +1,5 @@ +location /archive { + rewrite /archive/(.*) /$1 break; + proxy_pass http://127.0.0.1:1570; + proxy_redirect off; +}