• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

Question nginx only / add_header values are added to all files, even images

BenP

New Pleskian
Server operating system version
Ubuntu 20.04.5 LTS
Plesk version and microupdate number
Plesk Obsidian v18.0.49
Hi,

I'm currently trying to add Content Security Policy (CSP) headers to my website. The problem: Wherever I include those settings they're added to ALL files, even images. But I only want to add them on files with the content type "text/html".

I'm using Plesk in the nginx only mode.

It doesn't really make sense to put, e.g. "content-security-policy: frame-ancestors 'self'", on an image.

There's no difference if I put it in the "Additional headers" section or "Additional nginx directives". The result is the same.
Any help would be highly appreciated!

Best,
Benjamin
 
I am not sure if it works with content-security-policy entries, but have you tried a conditional block like

location ~ \.(html)$ {
add_header <your header here>;
}

?
 
Back
Top