This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
medgate.config
105 lines (67 loc) · 2.64 KB
/
medgate.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
### System level settings used for deploying docker images
# timezone settings
TZ=Europe/London
# .specify your proxy settings
http_proxy=
https_proxy=
no_proxy=vault,localhost,elasticsearch,tika,postgres,kibana
#2.credentials for PostgreSQL instance
POSTGRES_USER=nlp
POSTGRES_PASSWORD=password123
#3.credentials for FTP server
FTP_USER=nlp
FTP_PASS=password123
#4.credentials for ElasticSearch instance
ELASTIC_USER=nlp
ELASTIC_PASSWORD=password123
#5.credentials for Brat
BRAT_USERNAME=brat
BRAT_PASSWORD=brat
### Appication level settings used inside docker containers
# uid: same as POSTGRES_USER set in #2
# password: same as POSTGRES_PASSWORD set in #2
# Eg: postgres;database=nlp;uid=nlp;password=password123;
ConnectionStrings__VersionCheckConnection=server=postgres;database=nlp;uid=nlp;password=password123;
# same as the credentials set for ElasticSearch in #4
ElasticsearchSettings__SingleNode__ElasticSearchUrl=elasticsearch:9200
ElasticsearchSettings__SingleNode__ElasticSearchUser=nlp
ElasticsearchSettings__SingleNode__ElasticSearchPassword=password123
## credentials for WebDAV server
#WEBDAV_ADDRESS=
#WEBDAV_USER=
# obtain a token from ownCloud
#WEBDAV_PASS=
## Email sender settings
#EmailSenderSettings__SmtpServerHost=192.168.10.22
#EmailSenderSettings__Port=25
#EmailSenderSettings__EnableSSL=false
#EmailSenderSettings__FromAddress=test@test.com
# Leave username and password empty if your smtp server doesn't need credentials
#EmailSenderSettings__Username=
#EmailSenderSettings__Password=
## Job engine settings
# Job engine worker number
#SystemSettings__WorkerCount=
# Specify HL7 export directory to enable HL7 file export. HL7 files will be stored at /medgate/hl7 by default or any other existing folders under /medgate
#SystemSettings__HL7StorePath=/medgate/hl7
## Ingression settings
# Batch size for ingression, default:20
#IngressSettings__IngressBatchSize=
# Allowed file types for ingress
#IngressSettings__ScanFileFilter=pdf,doc,docx
# Handle existing files: skip or overwrite, default:skip
#IngressSettings__HandleExistingFilesOption=skip
# Archive options for ingressed files: none, archive or delete, default:none. If archive selected, files will be archived in dir /medgate/archive
#IngressSettings__IngressArchiveOption=none
## GCP job settings
#GCP job batch size
#GcpRootSettings__JobBatchSize=
#GCP json output handlers: normal or simple, default:normal
#GcpRootSettings__JsonOutputHandler=normal
## Settings for Vault
#VaultGatewaySettings__ServerAddress=
## Settings for MedCentre
#MedCentreSettings__ServerAddress=
## Settings for Kibana
KibanaSettings__ServerAddress=http://kibana:5601
RedisSettings__Host=redis