Difference between revisions of "Server Configuration"
From Hiasobi - FHIR
Brett Esler (Talk | contribs) |
Brett Esler (Talk | contribs) |
||
Line 4: | Line 4: | ||
* define how the server is running | * define how the server is running | ||
** Embedded - returned as actual configuration from '''Start''' call on '''Oridashi.Fhir.Host.FhirHost''' server; find allocated ports | ** Embedded - returned as actual configuration from '''Start''' call on '''Oridashi.Fhir.Host.FhirHost''' server; find allocated ports | ||
− | ** Standalone - | + | ** Embedded and Standalone - registry entries made under the current user key HKEY_CURRENT_USER\Software\Oridashi\Hiasobi\<profile name> |
+ | *** config: JSON string with configuration data as per below (licence key withheld) | ||
+ | *** iss: issuer is FHIR server endpoint e.g. https://localhost:8249 | ||
+ | *** running: is running status if started and stopped normally | ||
Revision as of 00:07, 3 May 2016
Hiasobi server configuration support two main uses
- define how you would like the server to run
- Embedded - passed in as Oridashi.Fhir.Configuration object in Start call on Oridashi.Fhir.Host.FhirHost server
- define how the server is running
- Embedded - returned as actual configuration from Start call on Oridashi.Fhir.Host.FhirHost server; find allocated ports
- Embedded and Standalone - registry entries made under the current user key HKEY_CURRENT_USER\Software\Oridashi\Hiasobi\<profile name>
- config: JSON string with configuration data as per below (licence key withheld)
- iss: issuer is FHIR server endpoint e.g. https://localhost:8249
- running: is running status if started and stopped normally
Property | Default | Description |
---|---|---|
ProfileName | 'default' | Identifying name (is allocated for licensed users) |
NetworkServer | false | Allows network calls from other machines to this server, default is to only allow the local machine |
AcceptedCrossOrigins | (null) | Domains (string array) specifically allowed Cross Origin Resource Sharing domains for browser based calls; default (null) is any domain '*' |
BestPracticePort (DSTU2) | 8290 | Web server port for local Best Practice CIS |
MedicalDirectorPort (DSTU2) | 8291 | Web server port for local Medical Director CIS |
ZedmedPort (DSTU2) | 8292 | Web server port for local Zedmed CIS |
LicenseKey | (null) | Allocated license key for associated ProfileName; required for access to 'live' CIS data |
IsLive | false | Access to 'live' CIS data, default is samples only |
IsOpen | false | Run as an 'open' server over HTTP otherwise is 'closed' run over 'HTTPS' and require authentication |
Deidentify | false | Remove names and human identifiers for patients and providers |