forked from langgenius/dify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/resource-add-integrity' into deploy/dev
- Loading branch information
Showing
3 changed files
with
78 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import type { NextRequest } from 'next/server' | ||
import { NextResponse } from 'next/server' | ||
|
||
export function middleware(request: NextRequest) { | ||
const nonce = Buffer.from(crypto.randomUUID()).toString('base64') | ||
// style-src 'self' 'nonce-${nonce}'; | ||
const csp = process.env.NODE_ENV === 'production' ? `'nonce-${nonce}'` : '\'unsafe-eval\' \'unsafe-inline\'' | ||
|
||
const cspHeader = ` | ||
default-src 'self'; | ||
connect-src 'self' https://cloud.dify.dev/ https://cloud.dify.ai/ https://analytics.google.com ; | ||
script-src 'self' ${csp} https://www.googletagmanager.com; | ||
style-src 'self' ${csp}; | ||
img-src 'self' blob: data:; | ||
font-src 'self'; | ||
object-src 'none'; | ||
base-uri 'self'; | ||
form-action 'self'; | ||
frame-ancestors 'none'; | ||
upgrade-insecure-requests; | ||
` | ||
// Replace newline characters and spaces | ||
const contentSecurityPolicyHeaderValue = cspHeader | ||
.replace(/\s{2,}/g, ' ') | ||
.trim() | ||
|
||
const requestHeaders = new Headers(request.headers) | ||
requestHeaders.set('x-nonce', nonce) | ||
|
||
requestHeaders.set( | ||
'Content-Security-Policy', | ||
contentSecurityPolicyHeaderValue, | ||
) | ||
|
||
const response = NextResponse.next({ | ||
request: { | ||
headers: requestHeaders, | ||
}, | ||
}) | ||
response.headers.set( | ||
'Content-Security-Policy', | ||
contentSecurityPolicyHeaderValue, | ||
) | ||
|
||
return response | ||
} | ||
|
||
export const config = { | ||
matcher: [ | ||
/* | ||
* Match all request paths except for the ones starting with: | ||
* - api (API routes) | ||
* - _next/static (static files) | ||
* - _next/image (image optimization files) | ||
* - favicon.ico (favicon file) | ||
*/ | ||
{ | ||
// source: '/((?!api|_next/static|_next/image|favicon.ico).*)', | ||
source: '/((?!_next/static|_next/image|favicon.ico).*)', | ||
// source: '/(.*)', | ||
// missing: [ | ||
// { type: 'header', key: 'next-router-prefetch' }, | ||
// { type: 'header', key: 'purpose', value: 'prefetch' }, | ||
// ], | ||
}, | ||
], | ||
} |