mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 16:23:25 +01:00
8a17193dd0
This makes text files compliant to POSIX which requires every line of a text file to end with a newline character [1][2]. [1] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_403 [2] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
version: v2
|
|
teleport:
|
|
nodename: your-server-name
|
|
data_dir: /var/lib/teleport
|
|
log:
|
|
output: stderr
|
|
severity: INFO
|
|
format:
|
|
output: text
|
|
|
|
auth_service:
|
|
enabled: "yes"
|
|
listen_addr: 0.0.0.0:3025
|
|
proxy_listener_mode: multiplex
|
|
cluster_name: your-server-url
|
|
# -- (Optional) Passwordless Authentication
|
|
# authentication:
|
|
# type: local
|
|
# second_factor: on
|
|
# webauthn:
|
|
# rp_id: your-server-url
|
|
# connector_name: passwordless
|
|
# -- (Optional) Teleport Assist
|
|
# assist:
|
|
# openai:
|
|
# api_token_path: /etc/teleport/openai_key
|
|
|
|
ssh_service:
|
|
enabled: "no"
|
|
|
|
proxy_service:
|
|
enabled: "yes"
|
|
web_listen_addr: 0.0.0.0:3080
|
|
# -- (Optional) when using reverse proxy
|
|
# public_addr: ['your-server-url:443']
|
|
https_keypairs: []
|
|
acme: {}
|
|
# --(Optional) ACME
|
|
# acme:
|
|
# enabled: "yes"
|
|
# email: your-email-address
|
|
# -- (Optional) Teleport Assist
|
|
# assist:
|
|
# openai:
|
|
# api_token_path: /etc/teleport/openai_key
|
|
|
|
app_service:
|
|
enabled: no
|
|
# -- (Optional) App Service
|
|
# enabled: yes
|
|
# apps:
|
|
# - name: "yourapp"
|
|
# uri: "http://your-app-url"
|
|
# insecure_skip_verify: false
|