Hello @vmarko
Thanks for your support
Yes, I have enabled both CSP and Permissions Policy
Security headers section seems too long and print screen seems to be not quite practical because a lot of print screens will be needed, is there something I can do to kind of export the config and send via an email ? nginx.conf is also too long, below is part of it. Please let me know if it helps.
# BEGIN W3TC Browser Cache
gzip on;
gzip_types text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/richtext text/plain text/xs>
location ~ \.(css|htc|less|js|js2|js3|js4)$ {
expires 31536000s;
etag on;
if_modified_since exact;
add_header Pragma "public";
add_header Cache-Control "public";
add_header Strict-Transport-Security "max-age=31536000";
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
add_header Referrer-Policy "strict-origin-when-cross-origin";
add_header Content-Security-Policy "frame-src 'self' https://websitedemos.net/ blob:; connect-src 'self'; font-src 'self' data:; script-src>
try_files $uri $uri/ /index.php?$args;
''''''
add_header Strict-Transport-Security "max-age=31536000";
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
add_header Referrer-Policy "strict-origin-when-cross-origin";
add_header Content-Security-Policy "frame-src 'self' https://websitedemos.net/ blob:; connect-src 'self'; font-src 'self' data:; script-src 'se>
# END W3TC Browser Cache