Advanced Search
Search Results
1075 total results found
Onbewoond Eiland: Hoofdstuk 1
De golven sloegen genadeloos tegen de romp van de boot, tot een laatste, donderende klap alles verscheurde. Sanne klampte zich vast aan een stuk wrakhout, haar vingers wit van de kou en de angst, terwijl de storm haar meesleurde in een eindeloze duisternis.Toe...
De Dekking (Fralino)
De Dekking: Hoofdstuk 1
Frederik en Aurelie waren zesendertig en tweeëndertig, verliefd sinds hun studententijd, en al jarenlang bezig met wat zij zelf “het project” noemden: een kind. Na drie mislukte pogingen in een labo en sperma-analyses die steeds slechter werden, had de arts he...
IT-Doku
Traefik Reverse Proxy for Docker & Swarm
Setting Up your own Reverse Proxy!
Getting Started
Overview of Traefik Reverse Proxy 3.0 & Key Concepts
Introduction Traefik is an open-source Application Proxy that simplifies the process of exposing and managing services in your infrastructure. It acts as the gateway to your platform, receiving incoming requests and securely routing them to the appropriate se...
Beginner-Guide: Traefik & Docker Swarm
How Traefik Works with Docker Swarm Traefik integrates tightly with Docker Swarm, using the Docker API to automatically discover services. In Swarm Mode, Traefik watches for service-level labels rather than container-level labels (which are used in standalo...
Beginner-Guide: Traefik & Docker Standalone Engine
Step 1: Install Docker Before setting up Traefik, make sure Docker is installed on your system. You can follow My Dockerengine Guide for instructions on installing Docker Engine. Step 2: Setting Up Traefik Create a docker-compose.yml file to define th...
Configuration
Configuration Introduction
Configuration in Traefik can refer to two different things: The fully dynamic routing configuration (referred to as the dynamic configuration) The startup configuration (referred to as the static configuration) Elements in the static configuration s...
Static Configuration File
There are three different, mutually exclusive (i.e., you can use only one at the same time), ways to define static configuration options in Traefik: In a configuration file In the command-line arguments As environment variables These ways are evaluat...
Dynamic Configuration File/s
The dynamic configuration contains everything that defines how the requests are handled by your system. This configuration can change and is seamlessly hot-reloaded, without any request interruption or connection loss. How Traefik Loads the Dynamic Config Fil...
Providers
Overview Providers
Configuration discovery in Traefik is achieved through Providers. The providers are infrastructure components, whether orchestrators, container engines, cloud providers, or key-value stores. The idea is that Traefik queries the provider APIs in order to find ...
HTTPS & TLS
Overview HTTPS & TLS
Traefik supports HTTPS & TLS, which concerns roughly two parts of the configuration: Routers: Define how HTTPS traffic is handled. TLS Connection: Manage certificates and TLS-specific settings. For Automated Certification Check this post: http://books...
How SSL Certificates Work: A Breakdown
What is SSL? SSL stands for Secure Sockets Layer, a protocol for encrypting, securing, and authenticating communications on the Internet. Although SSL has been replaced by TLS (Transport Layer Security), the term "SSL" is still widely used to describe thi...
Let's Encrypt: How does it Work? & More
Overview Traefik can automatically generate and renew TLS certificates using an ACME provider, such as Let’s Encrypt. This simplifies certificate management while ensuring secure HTTPS connections. How does Let's Encrypt Work? Let's Encrypt is a free,...
TLS: How does it Work? & More
Automated Certification via Let’s Encrypt For automated TLS certificate management, Traefik integrates with Let’s Encrypt. See detailed instructions in this Let’s Encrypt Post. If you want to Setup your Own TLS-Challenge go check out this Guide: Docker-c...