From b0b4f4410314ecf29860b444e53b9c2a2c7735a7 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 22 Sep 2021 23:49:12 +0200 Subject: [PATCH] serve-summaries --- conf/nginx.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 043af6c..bcb3b45 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -18,10 +18,20 @@ location __PATH__/ { location __PATH__/logs { alias /home/CI_package_check/logs/; autoindex on; + default_type "text/plain"; } location __PATH__/badges/ { alias /home/CI_package_check/badges/; autoindex on; } + + location __PATH__/summary/ { + alias /home/CI_package_check/summary/; + autoindex on; + etag off; + more_set_headers "Cache-control: max-age=300, s-maxage=300"; + error_page 404 /ci/summary/empty.png; + } + }