1 Star 0 Fork 99

不安疯子i/DicomSCP

forked from fightroad/DicomSCP 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
appsettings.json 5.87 KB
一键复制 编辑 原始数据 按行查看 历史
fightroad 提交于 2025-02-12 22:28 +08:00 . del旧版
{
"DicomSettings": {
"AeTitle": "STORESCP",
"StoreSCPPort": 11112,
"StoragePath": "./received_files",
"TempPath": "./temp_files",
"Advanced": {
"ValidateCallingAE": false,
"AllowedCallingAEs": [
"MiniSCUCC1"
],
"ConcurrentStoreLimit": 0,
"EnableCompression": false,
"PreferredTransferSyntax": "JPEGProcess14"
},
"WorklistSCP": {
"AeTitle": "WORKLISTSCP",
"Port": 11113,
"ValidateCallingAE": false,
"AllowedCallingAEs": []
},
"QRSCP": {
"AeTitle": "QRSCP",
"Port": 11114,
"ValidateCallingAE": false,
"AllowedCallingAEs": [],
"MoveDestinations": [
{
"Name": "RADIANT",
"AeTitle": "RADIANT",
"HostName": "127.0.0.1",
"Port": 1044
}
]
},
"PrintSCP": {
"AeTitle": "PRINTSCP",
"Port": 11115,
"ValidateCallingAE": false,
"AllowedCallingAEs": [
"WEASIS_AE",
"ANY-SCU",
"PRINTSCU"
]
},
"PrintSCU": {
"AeTitle": "PRINTSCU",
"Printers": [
{
"Name": "Print1",
"AeTitle": "PRINTSCP",
"HostName": "127.0.0.1",
"Port": 8000,
"IsDefault": false,
"Description": "放射科打印机"
},
{
"Name": "自己打印服务",
"AeTitle": "PRINTSCP",
"HostName": "127.0.0.1",
"Port": 11115,
"IsDefault": true,
"Description": "自己打印机"
}
]
}
},
"QueryRetrieveConfig": {
"LocalAeTitle": "QRSCU",
"RemoteNodes": [
{
"Name": "DicomGateWay",
"AeTitle": "QRSCP",
"HostName": "192.168.2.2",
"Port": 11114,
"Type": "qr"
},
{
"Name": "自己STORESCP",
"AeTitle": "STORESCP",
"HostName": "127.0.0.1",
"Port": 11112,
"Type": "store"
},
{
"Name": "自己QRSCP",
"AeTitle": "QRSCP",
"HostName": "127.0.0.1",
"Port": 11114,
"Type": "qr"
}
]
},
"Swagger": {
"Enabled": true,
"Title": "DICOM SCP API",
"Version": "v1",
"Description": "DICOM SCP服务器的REST API"
},
"Logging": {
"LogPath": "logs",
"RetainedDays": 31,
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] {Message:lj}{NewLine}{Exception}",
"Services": {
"QRSCP": {
"Enabled": true,
"MinimumLevel": "Information",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/qrscp",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [QRSCP] {Message:lj}{NewLine}{Exception}"
},
"QueryRetrieveSCU": {
"Enabled": true,
"MinimumLevel": "Information",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/qrscu",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [QRSCU] {Message:lj}{NewLine}{Exception}"
},
"StoreSCU": {
"Enabled": true,
"MinimumLevel": "Information",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/storescu",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [StoreSCU] {Message:lj}{NewLine}{Exception}"
},
"StoreSCP": {
"Enabled": true,
"MinimumLevel": "Information",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/storescp",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [StoreSCP] {Message:lj}{NewLine}{Exception}"
},
"WorklistSCP": {
"Enabled": true,
"MinimumLevel": "Information",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/worklistscp",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [WorklistSCP] {Message:lj}{NewLine}{Exception}"
},
"PrintSCP": {
"Enabled": true,
"MinimumLevel": "Information",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/printscp",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [PrintSCP] {Message:lj}{NewLine}{Exception}"
},
"PrintSCU": {
"Enabled": true,
"MinimumLevel": "Information",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/printscu",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [PrintSCU] {Message:lj}{NewLine}{Exception}"
},
"WADO": {
"Enabled": true,
"MinimumLevel": "Information",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/wado",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [WADO] {Message:lj}{NewLine}{Exception}"
}
},
"Database": {
"Enabled": true,
"MinimumLevel": "Error",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/database",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [DB] {Message:lj}{NewLine}{Exception}"
},
"Api": {
"Enabled": true,
"MinimumLevel": "Error",
"EnableConsoleLog": true,
"EnableFileLog": true,
"LogPath": "logs/api",
"OutputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] [API] [{RequestId}] {RequestMethod} {RequestPath} - {StatusCode} - {Elapsed:0.0000}ms{NewLine}{Message:lj}{NewLine}{Exception}"
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:5000"
}
},
"Limits": {
"MaxConcurrentConnections": 100,
"MaxConcurrentUpgradedConnections": 100,
"KeepAliveTimeout": "00:02:00",
"RequestHeadersTimeout": "00:01:00"
}
},
"ConnectionStrings": {
"DicomDb": "Data Source=./db/dicom.db"
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/fweb/DicomSCP.git
git@gitee.com:fweb/DicomSCP.git
fweb
DicomSCP
DicomSCP
master

搜索帮助