Files
pos-system/services/_template_dot_net/appsettings.json
Ho Ngoc Hai 0b0241143a feat(docs): Enhance Vietnamese documentation with updated diagrams and troubleshooting sections
- Improved Mermaid diagrams for better visual clarity and consistency across guides.
- Added detailed troubleshooting sections to assist users in diagnosing common issues effectively.
- Updated formatting and structure to align with the English version, ensuring consistency.
- Included quick tips and common issues sections to facilitate user navigation.
2026-01-10 21:21:41 +07:00

44 lines
1.1 KiB
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "${DATABASE_URL}"
},
"Redis": {
"ConnectionString": "${REDIS_URL}",
"InstanceName": "YourServiceName:"
},
"JWT": {
"Secret": "${JWT_SECRET}",
"Issuer": "${JWT_ISSUER}",
"Audience": "${JWT_AUDIENCE}",
"AccessTokenExpirationMinutes": 15,
"RefreshTokenExpirationDays": 7
},
"Cors": {
"AllowedOrigins": [
"http://localhost:3000",
"http://localhost:5173"
]
},
"RateLimit": {
"Enabled": true,
"RequestsPerMinute": 100,
"StrictRequestsPerHour": 10
},
"OpenTelemetry": {
"ServiceName": "YourServiceName",
"Endpoint": "${OTEL_EXPORTER_ENDPOINT}"
},
"HealthChecks": {
"UI": {
"Enabled": true
}
}
}