You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/pages/guides/FHIRServerUsersGuide.md
+13
Original file line number
Diff line number
Diff line change
@@ -2792,6 +2792,19 @@ Here are some notes related to these authentication schemes:
2792
2792
* OAuth 2.0 authentication can only be used in conjunction with an HTTPS endpoint because the OAuth authorization steps rely on SSL handshake negotiations.
2793
2793
* Client certificate-based authentication can only be used in conjunction with an HTTPS endpoint since it involves SSL handshake negotiations. The main value of client authentication is that the server is able to securely authenticate the client through the use of certificates.
2794
2794
2795
+
To disable basic authentication, add the below snippet under configDropins/overrides:
2796
+
```xml
2797
+
<server>
2798
+
<webApplicationid="fhir-server-webapp">
2799
+
<application-bndid="bind">
2800
+
<security-roleid="users"name="FHIRUsers">
2801
+
<special-subjecttype="EVERYONE"/>
2802
+
</security-role>
2803
+
</application-bnd>
2804
+
</webApplication>
2805
+
</server>
2806
+
```
2807
+
2795
2808
### 5.2.3 Configuring mutual TLS authentication
2796
2809
To properly configure the FHIR server's keystore and truststore files, perform the following steps.
0 commit comments