Issue
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
Solution
The issue was with nginx server, it was
add_header X-Frame-Options DENY;
changed to
add_header X-Frame-Options SAMEORIGIN;
Answered By - riverfall
Answer Checked By - Terry (JavaFixing Volunteer)