12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "AllowedHosts": "*",
- "Kestrel": {
- "Limits": {
- "KeepAliveTimeout": 3600,
- "MaxConcurrentConnections": 1000,
- "MaxConcurrentUpgradedConnections": 1000
- },
- "Endpoints": {
- "HttpsDefaultCert": {
- "Url": "https://*:40100"
- }
- },
- "Certificates": {
- "Default": {
- "AllowInvalid": true,
- "Path": "www.guanglinta.com.pfx",
- "Password": "1rgum4me"
- }
- }
- },
- "ConnectionStrings": {
- "Default": "server=www.guanglinta.com;database=kankanlightnovel;uid=root;pwd=long@2023",
- "User": "server=www.guanglinta.com;database=user;uid=root;pwd=long@2023"
- },
- "EncryptorKey": "Long",
- "Cors": {
- "Origins": [
- "https://localhost:40100",
- "https://localhost:40101",
- "https://localhost:40102",
- "https://localhost:40203"
- ]
- },
- "JWT": {
- "IssuerUri": "https://localhost:40100",
- "RedirectUris": "https://localhost:40203/signin",
- "PostLogoutRedirectUris": "https://localhost:40203/signout"
- }
- }
|