Added
Link Here
|
1 |
--- docs/pages/config-reference.mdx.orig 2022-02-23 04:58:43 UTC |
2 |
+++ docs/pages/config-reference.mdx |
3 |
@@ -21,7 +21,7 @@ teleport: |
4 |
|
5 |
# Data directory where Teleport daemon keeps its data. |
6 |
# See "Filesystem Layout" section above for more details. |
7 |
- data_dir: /var/lib/teleport |
8 |
+ data_dir: /var/db/teleport |
9 |
|
10 |
# Invitation token used to join a cluster. it is not used on |
11 |
# subsequent starts |
12 |
@@ -52,11 +52,11 @@ teleport: |
13 |
max_connections: 1000 |
14 |
max_users: 250 |
15 |
|
16 |
- # Logging configuration. Possible output values to disk via '/var/lib/teleport/teleport.log', |
17 |
+ # Logging configuration. Possible output values to disk via '/var/db/teleport/teleport.log', |
18 |
# 'stdout', 'stderr' and 'syslog'. Possible severity values are INFO, WARN |
19 |
# and ERROR (default). Possible format values include: timestamp, component, caller, and level. |
20 |
log: |
21 |
- output: /var/lib/teleport/teleport.log |
22 |
+ output: /var/db/teleport/teleport.log |
23 |
severity: ERROR |
24 |
format: [level, timestamp, component, caller] |
25 |
# Configuration for the storage back-end used for the cluster state and the |
26 |
@@ -68,11 +68,11 @@ teleport: |
27 |
type: dir |
28 |
|
29 |
# List of locations where the audit log events will be stored. By default, |
30 |
- # they are stored in `/var/lib/teleport/log` |
31 |
+ # they are stored in `/var/db/teleport/log` |
32 |
# When specifying multiple destinations like this, make sure that any highly-available |
33 |
# storage methods (like DynamoDB or Firestore) are specified first, as this is what the |
34 |
# Teleport web UI uses as its source of events to display. |
35 |
- audit_events_uri: ['dynamodb://events_table_name', 'firestore://events_table_name', 'file:///var/lib/teleport/log', 'stdout://'] |
36 |
+ audit_events_uri: ['dynamodb://events_table_name', 'firestore://events_table_name', 'file:///var/db/teleport/log', 'stdout://'] |
37 |
|
38 |
# Use this setting to configure teleport to store the recorded sessions in |
39 |
# an AWS S3 bucket or use GCP Storage with 'gs://'. See "Using Amazon S3" |
40 |
@@ -131,7 +131,7 @@ auth_service: |
41 |
# By default an automatically generated name is used (not recommended) |
42 |
# |
43 |
# IMPORTANT: if you change cluster_name, it will invalidate all generated |
44 |
- # certificates and keys (may need to wipe out /var/lib/teleport directory) |
45 |
+ # certificates and keys (may need to wipe out /var/db/teleport directory) |
46 |
cluster_name: "main" |
47 |
|
48 |
authentication: |
49 |
@@ -223,7 +223,7 @@ auth_service: |
50 |
# |
51 |
# If not set, by default Teleport will look for the `license.pem` file in |
52 |
# the configured `data_dir` . |
53 |
- license_file: /var/lib/teleport/license.pem |
54 |
+ license_file: /var/db/teleport/license.pem |
55 |
|
56 |
# This section configures the 'node service': |
57 |
ssh_service: |
58 |
@@ -320,8 +320,8 @@ proxy_service: |
59 |
|
60 |
# TLS certificate for the HTTPS connection. Configuring these properly is |
61 |
# critical for Teleport security. |
62 |
- https_key_file: /var/lib/teleport/webproxy_key.pem |
63 |
- https_cert_file: /var/lib/teleport/webproxy_cert.pem |
64 |
+ https_key_file: /var/db/teleport/webproxy_key.pem |
65 |
+ https_cert_file: /var/db/teleport/webproxy_cert.pem |
66 |
|
67 |
# This section configures the Kubernetes proxy service |
68 |
kubernetes: |