mirror of
https://github.com/YunoHost-Apps/yunorunner_ynh.git
synced 2024-09-03 20:36:13 +02:00
Merge pull request #19 from YunoHost-Apps/serve-summaries
Serve results summaries
This commit is contained in:
commit
433df45d99
1 changed files with 21 additions and 9 deletions
|
@ -10,13 +10,25 @@ location __PATH__/ {
|
||||||
# Include SSOWAT user panel.
|
# Include SSOWAT user panel.
|
||||||
include conf.d/yunohost_panel.conf.inc;
|
include conf.d/yunohost_panel.conf.inc;
|
||||||
|
|
||||||
location __PATH__/logs {
|
# Include SSOWAT user panel.
|
||||||
alias /home/CI_package_check/logs/;
|
include conf.d/yunohost_panel.conf.inc;
|
||||||
autoindex on;
|
|
||||||
}
|
|
||||||
|
|
||||||
location __PATH__/badges/ {
|
location __PATH__/logs {
|
||||||
alias /home/CI_package_check/badges/;
|
alias /home/CI_package_check/logs/;
|
||||||
autoindex on;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue