Add skip secure option example in app access docs (#5066)

This commit is contained in:
Steven Martin 2020-12-10 15:57:22 -05:00 committed by GitHub
parent 1ee10646ad
commit c0b51bbfc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -185,6 +185,16 @@ app_service:
uri: "https://localhost:8001"
public_addr: "jira.example.com"
```
### Skip TLS certificate verification
Corporations often use self-signed certificates for internal applications. Teleport attempts to check if the certificates are signed by a trusted CA (Certificate Authority). If using self-signed certificates use `insecure_skip_verify: true` to skip this verification step.
```yaml
- name: "app"
uri: "https://localhost:8443"
public_addr: "app.example.com"
insecure_skip_verify: true
```
### Deeplink to Subdirectory