File tree 3 files changed +4
-4
lines changed
AspNetCoreRazorMultiClients
BlazorBffAzureADWithApi/Server
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public static HeaderPolicyCollection GetHeaderPolicyCollection(bool isDev)
9
9
// Avoid building a new HeaderPolicyCollection on every request for performance reasons.
10
10
// Where possible, cache and reuse HeaderPolicyCollection instances.
11
11
if ( policy != null ) return policy ;
12
-
12
+
13
13
policy = new HeaderPolicyCollection ( )
14
14
. AddFrameOptionsDeny ( )
15
15
. AddContentTypeOptionsNoSniff ( )
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ public static HeaderPolicyCollection GetHeaderPolicyCollection(bool isDev)
23
23
builder . AddBlockAllMixedContent ( ) ;
24
24
builder . AddImgSrc ( ) . Self ( ) . From ( "data:" ) ;
25
25
builder . AddFormAction ( ) . Self ( ) ;
26
- builder . AddFontSrc ( ) . Self ( ) ;
27
- builder . AddBaseUri ( ) . Self ( ) ;
26
+ builder . AddFontSrc ( ) . Self ( ) ;
27
+ builder . AddBaseUri ( ) . Self ( ) ;
28
28
builder . AddFrameAncestors ( ) . None ( ) ;
29
29
30
30
builder . AddStyleSrc ( ) . WithNonce ( ) . UnsafeInline ( ) ;
Original file line number Diff line number Diff line change 24
24
services . AddSecurityHeaderPolicies ( )
25
25
. SetPolicySelector ( ( PolicySelectorContext ctx ) =>
26
26
{
27
- return SecurityHeadersDefinitions . GetHeaderPolicyCollection ( env . IsDevelopment ( ) ,
27
+ return SecurityHeadersDefinitions . GetHeaderPolicyCollection ( env . IsDevelopment ( ) ,
28
28
configuration [ "AzureAd:Instance" ] ) ;
29
29
} ) ;
30
30
You can’t perform that action at this time.
0 commit comments