# traefik

Published articles for traefik.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Running a Self-Hosted Tailscale Control Server Behind a Reverse Proxy

DevFeed: [Running a Self-Hosted Tailscale Control Server Behind a Reverse Proxy](<https://devfeed.tech/articles/running-a-self-hosted-tailscale-control-server-behind-a-reverse-proxy-34104.md>)

Original publisher: [Read original article](<https://philipptheserver.com/posts/headscale-behind-traefik-no-h2/>)

Author: Philipp Lehmann (philipp.lehmann@gruppe.ai)

Published: 2026-09-15T07:00:00Z

Content type: tutorial

Language: en

Sources: [Philipp Lehmann](<https://devfeed.tech/sources/philipp-lehmann.md>)

Topics: [tailscale](<https://devfeed.tech/topics/tailscale.md>), [proxy](<https://devfeed.tech/topics/proxy.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [TLS (Transport Layer Security)](<https://devfeed.tech/topics/tls.md>), [TLS handshake](<https://devfeed.tech/topics/tls-handshake.md>), [Self-hosted](<https://devfeed.tech/topics/self-hosted.md>), [Homelab](<https://devfeed.tech/topics/homelab.md>)

Tags: [dns](<https://devfeed.tech/tags/dns.md>), [docker](<https://devfeed.tech/tags/docker.md>), [h2](<https://devfeed.tech/tags/h2.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [networking](<https://devfeed.tech/tags/networking.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [reverse-proxy](<https://devfeed.tech/tags/reverse-proxy.md>), [security](<https://devfeed.tech/tags/security.md>), [self-hosted](<https://devfeed.tech/tags/self-hosted.md>), [tailscale](<https://devfeed.tech/tags/tailscale.md>), [tls](<https://devfeed.tech/tags/tls.md>), [tls-handshake](<https://devfeed.tech/tags/tls-handshake.md>), [traefik](<https://devfeed.tech/tags/traefik.md>)

### AI overview

This tutorial explains how to run a self-hosted Tailscale control server, Headscale, behind Traefik. It finds that the reverse proxy must use TLS with HTTP/1.1 only because Tailscale's noise handshake expects a full-duplex byte stream and can fail when ALPN negotiates HTTP/2.

### Source excerpt

Headscale behind Traefik: tls.options=no-h2@file with alpnProtocols http/1.1, because the Tailscale noise handshake breaks when ALPN negotiates h2.

## Caddy: proxy inverso con HTTPS automático

DevFeed: [Caddy: proxy inverso con HTTPS automático](<https://devfeed.tech/articles/caddy-proxy-inverso-con-https-automatico-34048.md>)

Original publisher: [Read original article](<https://tengoping.com/blog/caddy-proxy-inverso-https-automatico/>)

Author: Antonio Pérez

Published: 2026-08-06T00:00:00Z

Content type: tutorial

Language: es

Sources: [tengoping.com](<https://devfeed.tech/sources/tengoping-com.md>)

Topics: [proxy](<https://devfeed.tech/topics/proxy.md>), [TLS (Transport Layer Security)](<https://devfeed.tech/topics/tls.md>), [let's encrypt](<https://devfeed.tech/topics/let-s-encrypt.md>), [nginx](<https://devfeed.tech/topics/nginx.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [Go](<https://devfeed.tech/topics/go.md>)

Tags: [debian](<https://devfeed.tech/tags/debian.md>), [fedora](<https://devfeed.tech/tags/fedora.md>), [go](<https://devfeed.tech/tags/go.md>), [let-s-encrypt](<https://devfeed.tech/tags/let-s-encrypt.md>), [nginx](<https://devfeed.tech/tags/nginx.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [rhel](<https://devfeed.tech/tags/rhel.md>), [systemd](<https://devfeed.tech/tags/systemd.md>), [tls](<https://devfeed.tech/tags/tls.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [ubuntu](<https://devfeed.tech/tags/ubuntu.md>)

### AI overview

This Spanish tutorial explains how Caddy works as a Go-based reverse proxy with automatic HTTPS certificate issuance and renewal through Let's Encrypt or ZeroSSL. It compares Caddy with Nginx and Traefik, then covers installation and basic Caddyfile configuration.

### Source excerpt

Caddy emite y renueva certificados HTTPS automáticamente vía Let's Encrypt sin tocar Certbot: Caddyfile, requisitos y comparativa con Nginx y Traefik.

## Traefik: proxy inverso para contenedores

DevFeed: [Traefik: proxy inverso para contenedores](<https://devfeed.tech/articles/traefik-proxy-inverso-para-contenedores-34087.md>)

Original publisher: [Read original article](<https://tengoping.com/blog/traefik-proxy-inverso-contenedores/>)

Author: Antonio Pérez

Published: 2026-08-03T00:00:00Z

Content type: tutorial

Language: es

Sources: [tengoping.com](<https://devfeed.tech/sources/tengoping-com.md>)

Topics: [traefik](<https://devfeed.tech/topics/traefik.md>), [Docker](<https://devfeed.tech/topics/docker.md>), [proxy](<https://devfeed.tech/topics/proxy.md>), [let's encrypt](<https://devfeed.tech/topics/let-s-encrypt.md>), [Docker Compose](<https://devfeed.tech/topics/docker-compose.md>), [TLS (Transport Layer Security)](<https://devfeed.tech/topics/tls.md>)

Tags: [docker](<https://devfeed.tech/tags/docker.md>), [docker-compose](<https://devfeed.tech/tags/docker-compose.md>), [let-s-encrypt](<https://devfeed.tech/tags/let-s-encrypt.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [tls](<https://devfeed.tech/tags/tls.md>), [traefik](<https://devfeed.tech/tags/traefik.md>)

### AI overview

This tutorial explains how Traefik acts as a reverse proxy for Docker containers. It covers automatic container discovery through Docker labels, routing with entryPoints, routers, and services, and automatic HTTPS certificates through Let's Encrypt. It also compares Traefik with manually configured Nginx and mentions Caddy as an alternative.

### Source excerpt

Traefik detecta tus contenedores Docker automáticamente y les da HTTPS con Let's Encrypt vía labels, sin tocar un fichero de configuración.

## Keycloak 26.7.0 released

DevFeed: [Keycloak 26.7.0 released](<https://devfeed.tech/articles/keycloak-26-7-0-released-31784.md>)

Original publisher: [Read original article](<https://www.keycloak.org/2026/07/keycloak-2670-released>)

Author: Keycloak Team

Published: 2026-07-09T00:00:00Z

Content type: release

Language: en

Sources: [Keycloak Blog](<https://devfeed.tech/sources/keycloak-blog.md>)

Topics: [Keycloak](<https://devfeed.tech/topics/keycloak.md>), [API](<https://devfeed.tech/topics/api.md>), [Authentication](<https://devfeed.tech/topics/authentication.md>), [Authorization](<https://devfeed.tech/topics/authorization.md>), [Security](<https://devfeed.tech/topics/security.md>), [OAuth 2.0](<https://devfeed.tech/topics/oauth2.md>), [saml](<https://devfeed.tech/topics/saml.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [authentication](<https://devfeed.tech/tags/authentication.md>), [authorization](<https://devfeed.tech/tags/authorization.md>), [deprecated](<https://devfeed.tech/tags/deprecated.md>), [haproxy](<https://devfeed.tech/tags/haproxy.md>), [high-availability](<https://devfeed.tech/tags/high-availability.md>), [idm](<https://devfeed.tech/tags/idm.md>), [kerberos](<https://devfeed.tech/tags/kerberos.md>), [keycloak](<https://devfeed.tech/tags/keycloak.md>), [keycloak-release](<https://devfeed.tech/tags/keycloak-release.md>), [ldap](<https://devfeed.tech/tags/ldap.md>), [oauth](<https://devfeed.tech/tags/oauth.md>), [oauth-2-0](<https://devfeed.tech/tags/oauth-2-0.md>), [openid-connect](<https://devfeed.tech/tags/openid-connect.md>), [persistence](<https://devfeed.tech/tags/persistence.md>), [provisioning](<https://devfeed.tech/tags/provisioning.md>), [release](<https://devfeed.tech/tags/release.md>), [saml](<https://devfeed.tech/tags/saml.md>), [security](<https://devfeed.tech/tags/security.md>), [sso](<https://devfeed.tech/tags/sso.md>), [traefik](<https://devfeed.tech/tags/traefik.md>)

### AI overview

Keycloak 26.7.0 introduces preview support for SCIM-based user provisioning and simplified multi-cluster high availability, along with enhanced HAProxy and Traefik reverse-proxy guidance and step-up authentication for SAML clients. The release also adds a more secure, OAuth 2.0-compliant Identity Brokering API v2, while V1 remains enabled by default but is deprecated. OID4VCI improvements remain experimental.

### Source excerpt

To download the release go to Keycloak downloads. Highlights This release features new capabilities for users and administrators of Keycloak. The highlights of this release are: Automate user provisioning with the SCIM API (preview) Simplified multi-cluster high availability without external caches (preview) Enhanced reverse proxy guides with blueprints for HAProxy and Traefik Step-up authentication for SAML clients Read on to learn more about each new feature. If you are upgrading from a previous release, also review the changes listed in the upgrading guide. Security and Standards Stronger security for the Identity Brokering API The Identity Brokering API allows applications to retrieve tokens obtained from external identity providers during federated login. Version 2 of this API replaces the legacy V1 with a more secure and standards-compliant design: Client-level authorization -- access to external tokens is controlled per client using dedicated settings (Allow retrieve external tokens and an identity provider allow list) instead of assigning broker roles to individual users. Confidential clients only -- public clients are rejected, ensuring that only authenticated clients can retrieve external tokens. OAuth 2.0 compliant -- the endpoint uses POST and returns standard JSON responses with access_token, error, and error_description fields. Session-based token storage -- a new Store token in session option keeps tokens in the user session for faster access, with automatic cleanup on session expiry. Database storage remains available for persistence across sessions. V2 is now supported but disabled by default. V1 is deprecated but still enabled by default for backward compatibility. In a future release, V1 will be removed and V2 will become the default. For more information, see the Identity Brokering APIs chapter in the Server Developer Guide. Progress on Verifiable Credentials (OID4VCI) (experimental) Verifiable Credentials (OID4VCI) allow organizations to issue tampe

## Kubernetes 网络深度系列

DevFeed: [Kubernetes 网络深度系列](<https://devfeed.tech/articles/kubernetes-34005.md>)

Original publisher: [Read original article](<https://quant67.com/post/k8s-network/index.html>)

Author: Liao Tonglang

Published: 2026-04-03T00:00:00Z

Content type: tutorial

Language: zh

Sources: [土法炼钢 - 系统与基础设施](<https://devfeed.tech/sources/source-4.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Linux](<https://devfeed.tech/topics/linux.md>), [eBPF](<https://devfeed.tech/topics/ebpf.md>), [VXLAN](<https://devfeed.tech/topics/vxlan.md>), [gateway](<https://devfeed.tech/topics/gateway.md>), [nginx](<https://devfeed.tech/topics/nginx.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [Grafana](<https://devfeed.tech/topics/grafana.md>)

Tags: [ebpf](<https://devfeed.tech/tags/ebpf.md>), [gateway](<https://devfeed.tech/tags/gateway.md>), [grafana](<https://devfeed.tech/tags/grafana.md>), [index](<https://devfeed.tech/tags/index.md>), [k8s](<https://devfeed.tech/tags/k8s.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [linux](<https://devfeed.tech/tags/linux.md>), [net-11](<https://devfeed.tech/tags/net-11.md>), [networking](<https://devfeed.tech/tags/networking.md>), [nginx](<https://devfeed.tech/tags/nginx.md>), [return](<https://devfeed.tech/tags/return.md>), [series](<https://devfeed.tech/tags/series.md>), [service-mesh](<https://devfeed.tech/tags/service-mesh.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [vxlan](<https://devfeed.tech/tags/vxlan.md>)

### AI overview

A Chinese tutorial series explains Kubernetes networking from the Linux network stack through virtual devices, routing, tunnels, eBPF, CNI plugins, Services, security policies, service discovery, traffic management, performance tuning, and troubleshooting. It includes packet captures, code, and kernel-source references, with comparisons of major CNI and ingress approaches.

### Source excerpt

从 Linux 网络栈的第一个字节到多集群联邦网络的最后一跳----用代码、抓包和内核源码把 Kubernetes 网络讲透

## Open Source as a Way of Giving Back: The Artisan of the Day Is Daniel Petrica.

DevFeed: [Open Source as a Way of Giving Back: The Artisan of the Day Is Daniel Petrica.](<https://devfeed.tech/articles/open-source-as-a-way-of-giving-back-the-artisan-of-the-day-is-daniel-petrica-3889.md>)

Original publisher: [Read original article](<https://laravel.com/blog/open-source-as-a-way-of-giving-back-the-artisan-of-the-day-is-daniel-petrica>)

Author: Ana Tavares

Published: 2025-12-19T14:10:00Z

Content type: article

Language: en

Sources: [Laravel Blog](<https://devfeed.tech/sources/laravel-blog.md>)

Topics: [Laravel](<https://devfeed.tech/topics/laravel.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [PHP](<https://devfeed.tech/topics/php.md>), [Software as a service](<https://devfeed.tech/topics/saas.md>), [DevOps](<https://devfeed.tech/topics/devops.md>), [Front end](<https://devfeed.tech/topics/frontend.md>), [Monitoring](<https://devfeed.tech/topics/monitoring.md>), [Docker Compose](<https://devfeed.tech/topics/docker-compose.md>)

Tags: [backend](<https://devfeed.tech/tags/backend.md>), [career](<https://devfeed.tech/tags/career.md>), [development](<https://devfeed.tech/tags/development.md>), [devops](<https://devfeed.tech/tags/devops.md>), [docker](<https://devfeed.tech/tags/docker.md>), [framework](<https://devfeed.tech/tags/framework.md>), [frontend](<https://devfeed.tech/tags/frontend.md>), [knowledge-sharing](<https://devfeed.tech/tags/knowledge-sharing.md>), [laravel](<https://devfeed.tech/tags/laravel.md>), [monitoring](<https://devfeed.tech/tags/monitoring.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [php](<https://devfeed.tech/tags/php.md>), [programming](<https://devfeed.tech/tags/programming.md>), [projects](<https://devfeed.tech/tags/projects.md>), [saas](<https://devfeed.tech/tags/saas.md>), [tools](<https://devfeed.tech/tags/tools.md>), [traefik](<https://devfeed.tech/tags/traefik.md>)

### AI overview

Daniel Petrica describes how Laravel became the foundation of his programming career and enabled him to build products across industries. He also discusses LaraPlugins.io, open-source contributions, technical knowledge sharing, and his broad freelance work across backend development, DevOps, monitoring, and frontend tooling.

### Source excerpt

Daniel Petrica shares how Laravel shaped his career, from real estate portals to new SaaS projects and open-source contributions as a full-time freelancer.

## Using Coolify for subdomain direct redirect without a app resource

DevFeed: [Using Coolify for subdomain direct redirect without a app resource](<https://devfeed.tech/articles/using-coolify-for-subdomain-direct-redirect-without-a-app-resource-38832.md>)

Original publisher: [Read original article](<https://lengrand.fr/using-coolify-for-subdomain-direct-redirect-without-a-app-resource/>)

Author: Julien

Published: 2025-09-14T19:07:33Z

Content type: tutorial

Language: en

Sources: [Thoughts, stories and ideas.](<https://devfeed.tech/sources/thoughts-stories-and-ideas.md>)

Topics: [proxy](<https://devfeed.tech/topics/proxy.md>), [Redirection](<https://devfeed.tech/topics/redirection.md>), [YAML](<https://devfeed.tech/topics/yaml.md>), [configuration](<https://devfeed.tech/topics/configuration.md>), [TLS (Transport Layer Security)](<https://devfeed.tech/topics/tls.md>), [interface](<https://devfeed.tech/topics/interface.md>)

Tags: [coolify](<https://devfeed.tech/tags/coolify.md>), [devops](<https://devfeed.tech/tags/devops.md>), [dns](<https://devfeed.tech/tags/dns.md>), [habits](<https://devfeed.tech/tags/habits.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [ssl](<https://devfeed.tech/tags/ssl.md>), [tls](<https://devfeed.tech/tags/tls.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [yaml](<https://devfeed.tech/tags/yaml.md>)

### AI overview

A tutorial showing how to use Coolify's dynamic proxy configuration to redirect a subdomain to an external URL without creating a full application resource. It uses a YAML configuration with Traefik to define the redirect, router, TLS handling, and required dummy service.

### Source excerpt

Coolify's dynamic proxy configuration lets you redirect subdomains to external URLs without creating full resources. Using a simple YAML file with Traefik configuration, you can set up SSL-enabled redirects directly through Coolify's interface.

## Running Docker and Home Assistant on TrueNAS with Compose, macvlan, and Traefik

DevFeed: [Running Docker and Home Assistant on TrueNAS with Compose, macvlan, and Traefik](<https://devfeed.tech/articles/how-i-run-docker-on-truenas-like-a-pro-10676.md>)

Original publisher: [Read original article](<https://technotim.com/posts/truenas-docker-pro/>)

Author: Techno Tim

Published: 2025-07-14T13:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [Docker](<https://devfeed.tech/topics/docker.md>), [truenas](<https://devfeed.tech/topics/truenas.md>), [Docker Compose](<https://devfeed.tech/topics/docker-compose.md>), [YAML](<https://devfeed.tech/topics/yaml.md>), [Home Assistant](<https://devfeed.tech/topics/home-assistant.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [Self-hosted](<https://devfeed.tech/topics/self-hosted.md>), [Networks](<https://devfeed.tech/topics/networks.md>)

Tags: [compose](<https://devfeed.tech/tags/compose.md>), [containers](<https://devfeed.tech/tags/containers.md>), [docker](<https://devfeed.tech/tags/docker.md>), [home-assistant](<https://devfeed.tech/tags/home-assistant.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [networks](<https://devfeed.tech/tags/networks.md>), [self-hosted](<https://devfeed.tech/tags/self-hosted.md>), [self-hosting](<https://devfeed.tech/tags/self-hosting.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [truenas](<https://devfeed.tech/tags/truenas.md>), [yaml](<https://devfeed.tech/tags/yaml.md>)

### AI overview

A tutorial for running Docker applications on TrueNAS using YAML and Docker Compose. It covers creating datasets, optionally managing services through Code Server, and configuring Home Assistant with macvlan networking and Traefik for device discovery and reverse-proxy access.

### Source excerpt

Learn how to run Docker apps on TrueNAS like a pro -- with full control, clean YAML, and no extra dashboards. Have questions or a different setup that works for you? Leave a comment, I'd love to hear how others are running Docker on TrueNAS. 📺 Watch Video Starting with TrueNAS 25.10, you will need to add a services key to your custom yaml for new stacks and when updating your existing s...

## Kamal 2.0 released

DevFeed: [Kamal 2.0 released](<https://devfeed.tech/articles/kamal-2-0-released-33505.md>)

Original publisher: [Read original article](<https://dev.37signals.com/kamal-2/>)

Author: Donal McBreen

Published: 2024-09-26T17:00:00Z

Content type: release

Language: en

Sources: [37signals Dev](<https://devfeed.tech/sources/37signals-dev.md>)

Topics: [Deployment](<https://devfeed.tech/topics/deployment.md>), [proxy](<https://devfeed.tech/topics/proxy.md>), [configuration](<https://devfeed.tech/topics/configuration.md>), [let's encrypt](<https://devfeed.tech/topics/let-s-encrypt.md>), [Web](<https://devfeed.tech/topics/web.md>), [Rails](<https://devfeed.tech/topics/rails.md>), [traefik](<https://devfeed.tech/topics/traefik.md>)

Tags: [configuration](<https://devfeed.tech/tags/configuration.md>), [deploy](<https://devfeed.tech/tags/deploy.md>), [deployment](<https://devfeed.tech/tags/deployment.md>), [let-s-encrypt](<https://devfeed.tech/tags/let-s-encrypt.md>), [maintenance](<https://devfeed.tech/tags/maintenance.md>), [password](<https://devfeed.tech/tags/password.md>), [rails](<https://devfeed.tech/tags/rails.md>), [secrets](<https://devfeed.tech/tags/secrets.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [upgrade](<https://devfeed.tech/tags/upgrade.md>), [web-apps](<https://devfeed.tech/tags/web-apps.md>)

### AI overview

37signals announces Kamal 2.0, a deployment tool for running web applications on virtual machines or bare-metal servers. The release adds kamal-proxy for gapless deployments, automatic HTTPS with Let's Encrypt, multi-application deployment on one server, command aliases, and simplified secret management.

### Source excerpt

Making deployments simpler and faster.

## How to Self-Host Your Own Private AI Stack

DevFeed: [How to Self-Host Your Own Private AI Stack](<https://devfeed.tech/articles/how-to-self-host-your-own-private-ai-stack-10508.md>)

Original publisher: [Read original article](<https://technotim.com/posts/ai-stack-tutorial/>)

Author: Techno Tim

Published: 2024-07-08T13:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>), [Self-hosted](<https://devfeed.tech/topics/self-hosted.md>), [Local AI](<https://devfeed.tech/topics/local-ai.md>), [Docker Compose](<https://devfeed.tech/topics/docker-compose.md>), [Ollama](<https://devfeed.tech/topics/ollama.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [Ubuntu](<https://devfeed.tech/topics/ubuntu.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [docker](<https://devfeed.tech/tags/docker.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [ollama](<https://devfeed.tech/tags/ollama.md>), [self-hosted](<https://devfeed.tech/tags/self-hosted.md>), [self-hosted-ai](<https://devfeed.tech/tags/self-hosted-ai.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [ubuntu](<https://devfeed.tech/tags/ubuntu.md>)

### AI overview

A tutorial for running a local, private, self-hosted AI stack. It covers hardware considerations, Ubuntu Server 24.04 LTS, NVIDIA drivers, Docker Compose services, Traefik reverse-proxy access, internal DNS, and optional basic authentication for Ollama.

### Source excerpt

In this tutorial we'll walk through my local, private, self-hosted AI stack so that you can run it too. 📺 Watch Video Disclosures Nothing in this video was sponsored Info If you're looking for the overview of this stack, you can out the video here Self-Hosted AI That's Actually Useful Hardware Machine Used for AI: Building My ULTIMATE, All-inOne, HomeLab Server GPUs Here are ...

## Traefik 3 Wildcard Certificates with Docker, Let's Encrypt, and Cloudflare

DevFeed: [Traefik 3 Wildcard Certificates with Docker, Let's Encrypt, and Cloudflare](<https://devfeed.tech/articles/traefik-3-and-free-wildcard-certificates-with-docker-10674.md>)

Original publisher: [Read original article](<https://technotim.com/posts/traefik-3-docker-certificates/>)

Author: Techno Tim

Published: 2024-04-30T13:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [traefik](<https://devfeed.tech/topics/traefik.md>), [Docker](<https://devfeed.tech/topics/docker.md>), [Tutorial](<https://devfeed.tech/topics/tutorial.md>), [Cloudflare](<https://devfeed.tech/topics/cloudflare.md>), [Docker Compose](<https://devfeed.tech/topics/docker-compose.md>), [Homelab](<https://devfeed.tech/topics/homelab.md>), [Self-hosted](<https://devfeed.tech/topics/self-hosted.md>), [Pi-hole](<https://devfeed.tech/topics/pihole.md>)

Tags: [certificates](<https://devfeed.tech/tags/certificates.md>), [cloudflare](<https://devfeed.tech/tags/cloudflare.md>), [compose](<https://devfeed.tech/tags/compose.md>), [dns](<https://devfeed.tech/tags/dns.md>), [docker](<https://devfeed.tech/tags/docker.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [self-hosted](<https://devfeed.tech/tags/self-hosted.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [tutorial](<https://devfeed.tech/tags/tutorial.md>)

### AI overview

A tutorial showing how to configure Traefik 3 in Docker to obtain Let's Encrypt wildcard certificates using Cloudflare DNS, then use local DNS to route internal self-hosted services through those certificates.

### Source excerpt

In today's Traefik tutorial we'll get FREE Wildcard certificates to use in our HomeLab and with all of our internal self-hosted services. We're going to set up Traefik 3 in Docker and get Let's Encrypt certificates using Cloudflare as our DNS Provider (we'll cover how to set up others too). Then we'll configure local DNS using PiHole (or any other local DNS) to route to our services that are ...

## Wildcard Certificates with Traefik + cert-manager + Let's Encrypt in Kubernetes Tutorial

DevFeed: [Wildcard Certificates with Traefik + cert-manager + Let's Encrypt in Kubernetes Tutorial](<https://devfeed.tech/articles/wildcard-certificates-with-traefik-cert-manager-let-s-encrypt-in-kubernetes-tutorial-10588.md>)

Original publisher: [Read original article](<https://technotim.com/posts/kube-traefik-cert-manager-le/>)

Author: Techno Tim

Published: 2022-08-06T14:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [Tutorial](<https://devfeed.tech/topics/tutorial.md>), [TLS (Transport Layer Security)](<https://devfeed.tech/topics/tls.md>), [Cloudflare](<https://devfeed.tech/topics/cloudflare.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>)

Tags: [cloudflare](<https://devfeed.tech/tags/cloudflare.md>), [helm](<https://devfeed.tech/tags/helm.md>), [ingress](<https://devfeed.tech/tags/ingress.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [load-balancer](<https://devfeed.tech/tags/load-balancer.md>), [tls](<https://devfeed.tech/tags/tls.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [tutorial](<https://devfeed.tech/tags/tutorial.md>)

### AI overview

A step-by-step tutorial for configuring Traefik as a Kubernetes Ingress Controller, installing cert-manager, and using Cloudflare DNS challenges with Let's Encrypt to automatically provision TLS and wildcard certificates.

### Source excerpt

Traefik, cert-manager, Cloudflare, and Let's Encrypt are a winning combination when it comes to securing your services with certificates in Kubernetes.Today, we'll install and configure Traefik, the cloud native proxy and load balancer, as our Kubernetes Ingress Controller.We'll then install and configure cert-manager to manage certificates for our cluster.We'll set up Let's Encrypt as our Clu...

## Open Source & Collaborative Security with CrowdSec and Traefik - CrowdSec & Traefik Tutorial

DevFeed: [Open Source & Collaborative Security with CrowdSec and Traefik - CrowdSec & Traefik Tutorial](<https://devfeed.tech/articles/open-source-collaborative-security-with-crowdsec-and-traefik-crowdsec-traefik-tutorial-10522.md>)

Original publisher: [Read original article](<https://technotim.com/posts/crowdsec-traefik/>)

Author: Techno Tim

Published: 2022-02-12T13:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [traefik](<https://devfeed.tech/topics/traefik.md>), [Security](<https://devfeed.tech/topics/security.md>), [Self-hosted](<https://devfeed.tech/topics/self-hosted.md>), [Homelab](<https://devfeed.tech/topics/homelab.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [community](<https://devfeed.tech/tags/community.md>), [free](<https://devfeed.tech/tags/free.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [security](<https://devfeed.tech/tags/security.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [tutorial](<https://devfeed.tech/tags/tutorial.md>)

### AI overview

A tutorial explains how to use CrowdSec with the Traefik reverse proxy to detect and block threats, share threat signals, and manage bans through a self-hosted setup. It also considers CrowdSec as a possible alternative to fail2ban.

### Source excerpt

CrowdSec is a free, open-source and collaborative IPS. Analyze behaviors, respond to attacks & share signals across the community.With CrowdSec, you can set up your own intrusion detection system that parses logs, detects and blocks threats, and shares bad actors with the larger CrowdSec community.It works great with a reverse proxy like traefik to help keep hackers at bay.Could this be a v...

## Installing Grafana Loki with Helm on Kubernetes

DevFeed: [Installing Grafana Loki with Helm on Kubernetes](<https://devfeed.tech/articles/installing-grafana-loki-with-helm-on-kubernetes-10542.md>)

Original publisher: [Read original article](<https://technotim.com/posts/grafana-loki-kubernetes/>)

Author: Techno Tim

Published: 2021-11-20T12:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [Grafana](<https://devfeed.tech/topics/grafana.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [telemetry](<https://devfeed.tech/topics/telemetry.md>), [Package manager](<https://devfeed.tech/topics/package-manager.md>), [Prometheus](<https://devfeed.tech/topics/prometheus.md>)

Tags: [config](<https://devfeed.tech/tags/config.md>), [grafana](<https://devfeed.tech/tags/grafana.md>), [helm](<https://devfeed.tech/tags/helm.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [install](<https://devfeed.tech/tags/install.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [logs](<https://devfeed.tech/tags/logs.md>), [loki](<https://devfeed.tech/tags/loki.md>), [persistence](<https://devfeed.tech/tags/persistence.md>), [prometheus](<https://devfeed.tech/tags/prometheus.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [upgrade](<https://devfeed.tech/tags/upgrade.md>)

### AI overview

A tutorial on installing Grafana Loki on Kubernetes using Helm, including a Grafana, Prometheus, and Loki stack, persistent storage, dashboard access, Traefik configuration, LogQL queries, and upgrades.

### Source excerpt

In my previous video (Meet Grafana LOKI, a log aggregation system for everything and post, I promised that I would also explain how to install Granfana Loki on Kubernetes using helm.If you're looking to set this up in docker-compose, be sure to check out this video Installing helm Think of helm as a package manager for kubernetes. It'a an easy way to bundle and deploy config to kubernetes wit...

## 2 Factor Auth and Single Sign on with Authelia

DevFeed: [2 Factor Auth and Single Sign on with Authelia](<https://devfeed.tech/articles/2-factor-auth-and-single-sign-on-with-authelia-10510.md>)

Original publisher: [Read original article](<https://technotim.com/posts/authelia-traefik/>)

Author: Techno Tim

Published: 2021-06-05T14:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [traefik](<https://devfeed.tech/topics/traefik.md>), [Open Source](<https://devfeed.tech/topics/open-source.md>), [Portainer](<https://devfeed.tech/topics/portainer.md>), [configuration](<https://devfeed.tech/topics/configuration.md>), [nginx](<https://devfeed.tech/topics/nginx.md>)

Tags: [auth](<https://devfeed.tech/tags/auth.md>), [configuration](<https://devfeed.tech/tags/configuration.md>), [open-source](<https://devfeed.tech/tags/open-source.md>), [portainer](<https://devfeed.tech/tags/portainer.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [traefik](<https://devfeed.tech/tags/traefik.md>)

### AI overview

A tutorial on configuring Authelia with Portainer and Traefik to add single sign-on, two-factor authentication, and brute-force protection to reverse-proxy endpoints.

### Source excerpt

Authelia is an open source Single Sign On and 2FA companion for reverse proxies.It helps you secure your endpoints with single factor and 2 factor auth.It works with Nginx, Traefik, and HA proxy.Today, we'll configure Authelia with Portainer and Traefik and have 2 Factor up and running with brute force protection! 📺 Watch Video Traefik Authelia will work with other reverse proxies but I us...

## Configure Traefik and Portainer with Let's Encrypt wildcard SSL certificates

DevFeed: [Configure Traefik and Portainer with Let's Encrypt wildcard SSL certificates](<https://devfeed.tech/articles/put-wildcard-certificates-and-ssl-on-everything-10675.md>)

Original publisher: [Read original article](<https://technotim.com/posts/traefik-portainer-ssl/>)

Author: Techno Tim

Published: 2021-04-24T14:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [traefik](<https://devfeed.tech/topics/traefik.md>), [Portainer](<https://devfeed.tech/topics/portainer.md>), [SSL](<https://devfeed.tech/topics/ssl.md>), [hosting](<https://devfeed.tech/topics/hosting.md>)

Tags: [certificates](<https://devfeed.tech/tags/certificates.md>), [guide](<https://devfeed.tech/tags/guide.md>), [hosting](<https://devfeed.tech/tags/hosting.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [portainer](<https://devfeed.tech/tags/portainer.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [ssl](<https://devfeed.tech/tags/ssl.md>), [traefik](<https://devfeed.tech/tags/traefik.md>)

### AI overview

A tutorial on configuring Traefik and Portainer as a reverse proxy to obtain wildcard certificates from Let's Encrypt and use SSL for internal and external services.

### Source excerpt

Today, we're going to use SSL for everything.No more self-sign certs.No more http.No more hosting things on odd ports.We're going all in with SSL for our internal services and our external services too.We going to set up a reverse proxy using Traefik, Portainer, and use that to get wildcard certificates from Let's Encrypt. Join me and let's secure all the things. 📺 Watch Video Looking fo...

## Configuring Traefik 2 Ingress for Kubernetes

DevFeed: [Configuring Traefik 2 Ingress for Kubernetes](<https://devfeed.tech/articles/configuring-traefik-2-ingress-for-kubernetes-10584.md>)

Original publisher: [Read original article](<https://technotim.com/posts/k3s-traefik-rancher/>)

Author: Techno Tim

Published: 2021-04-08T14:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [traefik](<https://devfeed.tech/topics/traefik.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [k3s](<https://devfeed.tech/topics/k3s.md>), [rancher](<https://devfeed.tech/topics/rancher.md>), [Cloudflare](<https://devfeed.tech/topics/cloudflare.md>)

Tags: [certificates](<https://devfeed.tech/tags/certificates.md>), [cloudflare](<https://devfeed.tech/tags/cloudflare.md>), [helm](<https://devfeed.tech/tags/helm.md>), [high-availability](<https://devfeed.tech/tags/high-availability.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [ingress](<https://devfeed.tech/tags/ingress.md>), [k3s](<https://devfeed.tech/tags/k3s.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [rancher](<https://devfeed.tech/tags/rancher.md>), [self-hosting](<https://devfeed.tech/tags/self-hosting.md>), [ssl](<https://devfeed.tech/tags/ssl.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [tutorial](<https://devfeed.tech/tags/tutorial.md>)

### AI overview

A tutorial for configuring Traefik 2 as the ingress controller on a highly available k3s Kubernetes cluster, including Rancher compatibility, external load balancing, and wildcard certificates stored on persistent storage.

### Source excerpt

This guide is for installing traefik 2 on k3s.If you're not using rancher, that's fine, just skip to Reconfiguring k3s Note: There is an updated tutorial on installing traefik + cert-manager on Kubernetes here. However, if you want to store your certificates on disk, this tutorial here is perfectly fine. It assumes you have followed: Fully Automated K3S etcd High Availability Install ...

## How to Secure a Self-Hosted Rancher UI with Traefik, Let's Encrypt, and OAuth Providers

DevFeed: [How to Secure a Self-Hosted Rancher UI with Traefik, Let's Encrypt, and OAuth Providers](<https://devfeed.tech/articles/ssl-traefik-and-oauth-for-rancher-google-github-keycloak-azure-and-more-10572.md>)

Original publisher: [Read original article](<https://technotim.com/posts/host-rancher-securely/>)

Author: Techno Tim

Published: 2020-09-05T14:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [rancher](<https://devfeed.tech/topics/rancher.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [Tutorial](<https://devfeed.tech/topics/tutorial.md>), [Homelab](<https://devfeed.tech/topics/homelab.md>), [SSL](<https://devfeed.tech/topics/ssl.md>), [OAuth](<https://devfeed.tech/topics/oauth.md>), [Authentication](<https://devfeed.tech/topics/authentication.md>)

Tags: [authentication](<https://devfeed.tech/tags/authentication.md>), [guide](<https://devfeed.tech/tags/guide.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [oauth](<https://devfeed.tech/tags/oauth.md>), [rancher](<https://devfeed.tech/tags/rancher.md>), [ssl](<https://devfeed.tech/tags/ssl.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [tutorial](<https://devfeed.tech/tags/tutorial.md>)

### AI overview

This step-by-step tutorial explains how to self-host a Rancher UI in a homelab, place it behind Traefik, obtain SSL certificates with Let's Encrypt, make the UI publicly available, and configure third-party OAuth providers for additional authentication features.

### Source excerpt

Do you want to self host your Rancher UI securely in your homelab? Have you thought about putting your Rancher UI behind Traefik and your reverse proxy to get free SSL certificates using Let's Encrypt? Do you want to make your Rancher UI available publicly and secure it using 3rd party OAuth providers like Google, GitHub, Keycloak, Okta, Shibboleth, and more? Well this is the guide for you.In...

## Self-Hosting Your Homelab Services with SSL -- Let's Encrypt, MetalLB, Traefik, Rancher, Kubernetes

DevFeed: [Self-Hosting Your Homelab Services with SSL -- Let's Encrypt, MetalLB, Traefik, Rancher, Kubernetes](<https://devfeed.tech/articles/self-hosting-your-homelab-services-with-ssl-let-s-encrypt-metallb-traefik-rancher-kubernetes-10657.md>)

Original publisher: [Read original article](<https://technotim.com/posts/reverse-proxy-kubernetes/>)

Author: Techno Tim

Published: 2020-08-15T14:00:00Z

Content type: tutorial

Language: en

Sources: [Techno Tim](<https://devfeed.tech/sources/techno-tim.md>)

Topics: [Homelab](<https://devfeed.tech/topics/homelab.md>), [Self-hosted](<https://devfeed.tech/topics/self-hosted.md>), [Tutorial](<https://devfeed.tech/topics/tutorial.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [rancher](<https://devfeed.tech/topics/rancher.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [SSL](<https://devfeed.tech/topics/ssl.md>)

Tags: [certificates](<https://devfeed.tech/tags/certificates.md>), [homelab](<https://devfeed.tech/tags/homelab.md>), [ingress](<https://devfeed.tech/tags/ingress.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [rancher](<https://devfeed.tech/tags/rancher.md>), [self-hosting](<https://devfeed.tech/tags/self-hosting.md>), [ssl](<https://devfeed.tech/tags/ssl.md>), [traefik](<https://devfeed.tech/tags/traefik.md>), [tutorial](<https://devfeed.tech/tags/tutorial.md>), [video](<https://devfeed.tech/tags/video.md>), [vpn](<https://devfeed.tech/tags/vpn.md>)

### AI overview

A step-by-step video tutorial for securing self-hosted homelab services with SSL certificates. It covers Rancher, Kubernetes, Kubernetes Ingress, MetalLB, Traefik, Let's Encrypt, and DNS, including a staging-to-production certificate configuration change.

### Source excerpt

Are you self-hosting lots of services at home in your homelab? Have you been port forwarding or using VPN to access your self-hosted services wishing you had certificates so that you can access them securely over SSL? Well after this video, you can! In this step by step tutorial we'll walk through setting up Rancher and Kubernetes with a reverse proxy, Kubernetes Ingress, MetalLB, Traefik, L...

## GKE using Traefik as the ingress controller

DevFeed: [GKE using Traefik as the ingress controller](<https://devfeed.tech/articles/gke-using-traefik-as-the-ingress-controller-37730.md>)

Original publisher: [Read original article](<https://carlosbecker.com/posts/gke-traefik-ingress/>)

Author: Carlos Alexandro Becker

Published: 2020-02-02T00:00:00Z

Content type: tutorial

Language: en

Sources: [Carlos Becker](<https://devfeed.tech/sources/carlos-becker.md>)

Topics: [Gke](<https://devfeed.tech/topics/gke.md>), [traefik](<https://devfeed.tech/topics/traefik.md>), [Kubernetes](<https://devfeed.tech/topics/kubernetes.md>), [Cloudflare](<https://devfeed.tech/topics/cloudflare.md>)

Tags: [cloudflare](<https://devfeed.tech/tags/cloudflare.md>), [gke](<https://devfeed.tech/tags/gke.md>), [ingress](<https://devfeed.tech/tags/ingress.md>), [kubernetes](<https://devfeed.tech/tags/kubernetes.md>), [load-balancer](<https://devfeed.tech/tags/load-balancer.md>), [traefik](<https://devfeed.tech/tags/traefik.md>)

### AI overview

The article explains how using Traefik as the ingress controller in a GKE Kubernetes cluster caused intermittent Cloudflare HTTP 520 errors. A load balancer sent traffic to preemptible nodes that did not run Traefik; if a node was preempted during a slow request, the request ended prematurely. The proposed fix is to configure load-balancer health checks so only nodes running Traefik receive traffic.

### Source excerpt

I recently fell into a trap using Traefik as the ingress controller in one cluster. I decided to write about it with hopes it maybe help someone else.