-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6ba5d81
commit 64c0bae
Showing
8 changed files
with
34 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: SSL Configuration | ||
--- | ||
|
||
# SSL Configuration | ||
|
||
![SSL setting](../ssl-config.png) | ||
|
||
## Additional Trusted CA Certificates | ||
|
||
Additional to the default trusted CA certificates, custom ones can be imported to verify the server identities. Currently, | ||
the accepted format is only DER. A DER certificate can be converted from a PEM certificate using OpenSSL: | ||
``` | ||
openssl x509 -in cert.pem -out cert.der -outform DER | ||
``` | ||
|
||
Imported certificates can be disabled by unchecking the corresponding green tick box, or deleted. Changes to the | ||
original file would not affect imported ones. | ||
|
||
Self-signed certificates are also supported at this moment. A warning will be displayed if a non-CA certificate is | ||
imported. | ||
|
||
## Disable SSL Verification | ||
|
||
SSL certificate verification can be disabled in the [Environment setting](environments). | ||
|
||
By default, SSL verification is enabled. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters