forked from miurla/morphic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
42 lines (38 loc) · 1.2 KB
/
middleware.ts
File metadata and controls
42 lines (38 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { withAuth } from 'next-auth/middleware'
import { NextResponse } from 'next/server'
export default withAuth(
function middleware(req) {
// Add request information to response headers
const protocol = req.headers.get('x-forwarded-proto') || req.nextUrl.protocol
const host = req.headers.get('x-forwarded-host') || req.headers.get('host') || ''
const baseUrl = `${protocol}${protocol.endsWith(':') ? '//' : '://'}${host}`
const response = NextResponse.next()
response.headers.set('x-url', req.url)
response.headers.set('x-host', host)
response.headers.set('x-protocol', protocol)
response.headers.set('x-base-url', baseUrl)
return response
},
{
callbacks: {
authorized: ({ token }) => !!token
},
pages: {
signIn: '/auth/login'
}
}
)
// Protect all routes except public ones
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - api/auth (auth API routes)
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
* - public folder
*/
'/((?!api/auth|_next/static|_next/image|favicon.ico|public).*)'
]
}