当前位置: 代码迷 >> 综合 >> Nginx配置“Content-Security-Policy”头 、“X-XSS-Protection”头 和“X-Content-Type-Options”头
  详细解决方案

Nginx配置“Content-Security-Policy”头 、“X-XSS-Protection”头 和“X-Content-Type-Options”头

热度:14   发布时间:2024-01-31 16:45:32.0

如上图配置

add_header X-Content-Type-Options: nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header Content-Security-Policy "default-src 'self'";

如上图即成功

  相关解决方案