36 lines
768 B
YAML
36 lines
768 B
YAML
|
# Please check the documentation at
|
||
|
# https://goteleport.com/docs/setup/reference/config/
|
||
|
|
||
|
# Sample Teleport configuration file.
|
||
|
# Creates a single proxy, auth and node server.
|
||
|
#
|
||
|
# Things to update:
|
||
|
# 1. license.pem: You only need a license from https://dashboard.goteleport.com
|
||
|
# if you are an Enterprise customer.
|
||
|
#
|
||
|
teleport:
|
||
|
nodename: your-hostname-goes-here
|
||
|
data_dir: /var/lib/teleport
|
||
|
log:
|
||
|
output: stderr
|
||
|
severity: INFO
|
||
|
format:
|
||
|
output: text
|
||
|
ca_pin: ""
|
||
|
auth_service:
|
||
|
enabled: "yes"
|
||
|
listen_addr: 0.0.0.0:3025
|
||
|
ssh_service:
|
||
|
enabled: "yes"
|
||
|
labels:
|
||
|
env: example
|
||
|
commands:
|
||
|
- name: hostname
|
||
|
command: [hostname]
|
||
|
period: 1m0s
|
||
|
proxy_service:
|
||
|
enabled: "yes"
|
||
|
listen_addr: 0.0.0.0:3023
|
||
|
https_keypairs: []
|
||
|
acme: {}
|