最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

How to add csp, x

互联网 admin 49浏览 0评论

How to add csp, x

我们正在为我的 React 应用程序使用 Azure 应用程序服务。我们正在从 azure 应用程序服务(应用程序服务使用 nodejs 14)提供反应构建工件。我想在这里

add content-security-policy header in web.config file.
Add x-frame-option - sameorigin
Remove x-powered-by: express header

但是在

web.config
文件中修改后没有反映到应用服务配置中。我该怎么办?

我的 web.config 文件

<configuration>
    <system.webServer>
        <httpProtocol>
            <customHeaders>
                <add name="X-Frame-Options" value="SAMEORIGIN"/>
                <add name="Content-Security-Policy" value=".." />
                <remove name="X-Powered-By" />                          
            </customHeaders>
        </httpProtocol>
    </system.webServer>
</configuration>
回答如下:

How to add csp, x

我们正在为我的 React 应用程序使用 Azure 应用程序服务。我们正在从 azure 应用程序服务(应用程序服务使用 nodejs 14)提供反应构建工件。我想在这里

add content-security-policy header in web.config file.
Add x-frame-option - sameorigin
Remove x-powered-by: express header

但是在

web.config
文件中修改后没有反映到应用服务配置中。我该怎么办?

我的 web.config 文件

<configuration>
    <system.webServer>
        <httpProtocol>
            <customHeaders>
                <add name="X-Frame-Options" value="SAMEORIGIN"/>
                <add name="Content-Security-Policy" value=".." />
                <remove name="X-Powered-By" />                          
            </customHeaders>
        </httpProtocol>
    </system.webServer>
</configuration>
回答如下:
发布评论

评论列表 (0)

  1. 暂无评论