21 lines
492 B
TypeScript
21 lines
492 B
TypeScript
import env from '#start/env'
|
|
import app from '@adonisjs/core/services/app'
|
|
import { Secret } from '@adonisjs/core/helpers'
|
|
import { defineConfig } from '@adonisjs/core/http'
|
|
|
|
export const appKey = new Secret(env.get('APP_KEY'))
|
|
|
|
export const http = defineConfig({
|
|
generateRequestId: true,
|
|
allowMethodSpoofing: false,
|
|
useAsyncLocalStorage: false,
|
|
cookie: {
|
|
domain: '',
|
|
path: '/',
|
|
maxAge: '2h',
|
|
httpOnly: true,
|
|
secure: app.inProduction,
|
|
sameSite: 'lax',
|
|
},
|
|
})
|