diff --git a/conf/nginx.conf b/conf/nginx.conf index ff7c444..c6f5f4f 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -11,18 +11,19 @@ location __PATH__/ { include conf.d/yunohost_panel.conf.inc; location __PATH__/logs { - alias /home/CI_package_check/logs/; + alias __FINALPATH__/results/logs/; autoindex on; default_type "text/plain"; } location __PATH__/badges/ { - alias /home/CI_package_check/badges/; + alias __FINALPATH__/results/badges/; + more_set_headers "Cache-control: max-age=300, s-maxage=300"; autoindex on; } location __PATH__/summary/ { - alias /home/CI_package_check/summary/; + alias __FINALPATH__/results/summary/; autoindex on; etag off; more_set_headers "Cache-control: max-age=300, s-maxage=300"; diff --git a/conf/yunorunner.config.py b/conf/yunorunner.config.py index e160c44..e6da44c 100644 --- a/conf/yunorunner.config.py +++ b/conf/yunorunner.config.py @@ -1,9 +1,10 @@ BASE_URL = "https://__DOMAIN____PATH__" PORT = __PORT__ -DEBUG = False -PATH_TO_ANALYZER = "/home/CI_package_check/analyseCI.sh" +PATH_TO_ANALYZER = "__FINALPATH__/analyze_yunohost_app.sh" MONITOR_APPS_LIST = False MONITOR_GIT = False MONITOR_ONLY_GOOD_QUALITY_APPS = False MONTHLY_JOBS = False WORKER_COUNT = 1 +YNH_BRANCH = "stable" +DIST = "bullseye" diff --git a/manifest.json b/manifest.json index 5157a63..f6f2718 100644 --- a/manifest.json +++ b/manifest.json @@ -36,8 +36,7 @@ { "name": "path", "type": "path", - "example": "/yunorunner", - "default": "/yunorunner" + "default": "/ci" } ] }