Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jenkins show blank html instead of report

I use Jenkins 1.656 and HTML publisher plugin 1.11.

I have successfully added HTML report section in the job: Jenkins project configuration

Unfortunately when I click on HTML Reports, it shows only blank page.

The zip button works -- it downloads the report archive.

I will appreciate any help

like image 209
riverfall Avatar asked Oct 15 '25 21:10

riverfall


1 Answers

The issue was with nginx server, it was

add_header X-Frame-Options DENY;

changed to

add_header X-Frame-Options SAMEORIGIN;
like image 140
riverfall Avatar answered Oct 17 '25 12:10

riverfall