Files
KArtSell.Aegis/src/KArtSell.Host/appsettings.Release.json
T
kjh2064 f38581ff4a
deploy / deploy (push) Successful in 1m51s
deploy / notify (push) Successful in 1s
docs: JWT authentication implementation guide and production config
- Added comprehensive JWT_AUTHENTICATION.md documentation
- Covers backend (JwtAuthenticationHandler, LoginEndpoint) and frontend (useAuthApi, LoginPage)
- Includes configuration for development and production modes
- Security considerations and best practices
- Token refresh enhancement recommendations
- Testing guide and troubleshooting
- API contract documentation
- Deployment checklist

- Added appsettings.Release.json for production JWT configuration
- Placeholders for environment-specific values (JWT_KEY)
- Proper listen address (0.0.0.0:5002) for containerized deployments

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-08-18 00:18:48 +09:00

27 lines
439 B
JSON

{
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:5002"
}
}
},
"Authentication": {
"Mode": "JWT"
},
"Jwt": {
"Key": "${JWT_KEY}",
"Issuer": "KArtSell.Aegis",
"Audience": "KArtSell.Aegis",
"ExpirationMinutes": 60
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft.AspNetCore": "Warning"
}
}
}
}