Application Access Giving access Issues after short interval #49628
Unanswered
Unthink-pri18
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ISSUE
I have teleport setup with IP whitelisting in security group, I have used the dns challenge way to gain the certificate and have disabled acme, Behind this I have jenkins and Grafana with JWT setup, with initial setup it works and I login with the Teleport users to both Jenkins and Grafana, but What i noticed is after some time like and 1-2 hr , when i retry it takes long time for grafana and jenkins to load and when they load they shows there default login page.
Then As soon as I remove IP whitelisting, it again start working fine but when i again whitelist IP it does same.
Teleport.yaml
version: v3
teleport:
nodename: ip-x-x-x-x
data_dir: /var/lib/teleport
log:
output: stderr
severity: INFO
format:
output: text
ca_pin: ""
diag_addr: ""
auth_service:
enabled: "yes"
listen_addr: 0.0.0.0:3025
cluster_name: abc.abcd.com
proxy_listener_mode: multiplex
ssh_service:
enabled: "yes"
proxy_service:
enabled: "yes"
web_listen_addr: 0.0.0.0:443
public_addr: abc.abcd.com:443
https_keypairs:
- cert_file: /etc/letsencrypt/live/abc.abcd.com/fullchain.pem
key_file: /etc/letsencrypt/live/abc.abcd.com/privkey.pem
https_keypairs_reload_interval: 0s
acme:
enabled: "no"
email: abcd@gmail.com
app_service:
enabled: true
apps:
name: "jenkins"
uri: "http://:8080"
public_addr: jenkins.abc.abcd.com
labels:
inhouse: "no"
name: "grafana"
uri: "http://:3000"
public_addr: grafanaa.abc.abcd.com
labels:
inhouse: "no"
rewrite:
headers:
What is actually happening here?
Beta Was this translation helpful? Give feedback.
All reactions