- 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.
44 lines
1.1 KiB
JSON
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
|
|
}
|
|
}
|
|
} |