diff --git a/conf/nginx.conf b/conf/nginx.conf index b6fef56..ff7c444 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -10,25 +10,22 @@ location __PATH__/ { # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; - # Include SSOWAT user panel. - include conf.d/yunohost_panel.conf.inc; + location __PATH__/logs { + alias /home/CI_package_check/logs/; + autoindex on; + default_type "text/plain"; + } - 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; + 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; - } + error_page 404 /ci/summary/empty.png; + } }