add Teleport config file
This commit is contained in:
parent
562dfc6496
commit
0a3c2fcac5
3 changed files with 43 additions and 0 deletions
|
@ -14,3 +14,5 @@ This repository should give you a good start on how to setup a debian server to
|
|||
[Create an informative Message of the Day](https://github.com/flohoss/setupDebianServer/tree/main/MessageOfTheDay)
|
||||
|
||||
[Install Docker on Debian](https://github.com/flohoss/setupDebianServer/tree/main/Docker)
|
||||
|
||||
[Teleport config file](https://github.com/flohoss/setupDebianServer/tree/main/Teleport)
|
||||
|
|
3
Teleport/README.md
Normal file
3
Teleport/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Telegram config file
|
||||
|
||||
located in ```/etc/teleport.yaml```
|
38
Teleport/etc/teleport.yaml
Normal file
38
Teleport/etc/teleport.yaml
Normal file
|
@ -0,0 +1,38 @@
|
|||
version: v2
|
||||
teleport:
|
||||
nodename: audi
|
||||
data_dir: /var/lib/teleport
|
||||
log:
|
||||
output: /var/lib/teleport/teleport.log
|
||||
severity: ERROR
|
||||
format:
|
||||
output: text
|
||||
ca_pin: []
|
||||
diag_addr: ""
|
||||
auth_service:
|
||||
enabled: "yes"
|
||||
listen_addr: 0.0.0.0:3025
|
||||
cluster_name: tp.example.de
|
||||
proxy_listener_mode: multiplex
|
||||
ssh_service:
|
||||
enabled: "yes"
|
||||
labels:
|
||||
HETZNER: CPX11
|
||||
IP: 159.69.32.87
|
||||
permit_user_env: true
|
||||
proxy_service:
|
||||
enabled: "yes"
|
||||
web_listen_addr: 0.0.0.0:443
|
||||
public_addr: tp.example.de:443
|
||||
https_keypairs: []
|
||||
acme:
|
||||
enabled: "yes"
|
||||
email: example@outlook.com
|
||||
app_service:
|
||||
enabled: "yes"
|
||||
apps:
|
||||
- name: "portainer"
|
||||
uri: "http://localhost:9000"
|
||||
public_addr: "portainer.tp.example.de"
|
||||
labels:
|
||||
TYPE: "Docker"
|
Loading…
Reference in a new issue