skip to Main Content

Hetzler LB, cert-manager, nginx-ingress example

I installed kubernetes in Hetner based on the repository. I am using godaddy as DNS management I have install cert manager in the cluster. I took it from here. kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.12.0/cert-manager.yaml Load balancer: apiVersion: v1 kind: Service metadata:…

VIEW QUESTION

Cannot start keycloak in docker with letsencrypt certificates

I can run Keycloak with the following command ./bin/kc.sh start-dev --https-certificate-file=/etc/letsencrypt/live/$HOSTNAME/cert.pem --https-certificate-key-file=/etc/letsencrypt/live/$HOSTNAME/privkey.pem --hostname=$HOSTNAME Works as expected On the same computer, I try to run using Docker docker run -p 80:8080 -p 443:8443 -v /etc/letsencrypt:/etc/letsencrypt:ro -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=change_me -e JAVA_OPTS_APPEND="$JAVA_OPTS_APPEND"…

VIEW QUESTION

Let's Encrypt SSL throwing 404 – Nginx

I just installed nginx on my VPS and created 2 websites on there. api.school-alert.cz server { server_name api.school-alert.cz; index index.html index.htm; access_log /var/log/nginx/bmiapp.log; error_log /var/log/nginx/bmiapp-error.log error; location / { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host…

VIEW QUESTION
Back To Top
Search