Skip to content

Demo application showcasing the use of Traefik as a load balancer.

Notifications You must be signed in to change notification settings

tanishqmanuja/demo.traefik-load-balancing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Traefik Load Balancing Demo

Traefik is a popular reverse proxy and load balancer that is commonly used in microservices and containerized environments. This application demonstrates how to set up Traefik for load balancing various services and provides example configurations to get you started.

Prerequisites

Before you can use this, ensure you have the following prerequisites installed:

  • Docker - for containerization.
  • Docker Compose - for managing multi-container applications.
  • A working knowledge of Traefik's configuration concepts.

Diagram

Here is a simple diagramatic representation of the system:

Diagram

Getting Started

Follow these steps to get started:

  1. Clone this repository to your local machine:

    git clone https://github.com/tanishqmanuja/demo.traefik-load-balancing.git
  2. Change into the project directory:

    cd demo.traefik-load-balancing
  3. Start the application using Docker Compose:

    docker compose up -d
  4. Access your services through the Traefik reverse proxy, exposed at http://localhost:8080.

Building

If you want to rebuild the server, use the Docker Compose command with build flag as follows:

docker compose up --build

Configuration

Traefik Configuration

The Traefik configuration is defined in the traefik.yaml & config.yaml file inside ./config/traefik directory. You can customize settings such as entry points, middleware, and providers based on your requirements. Refer to the Traefik documentation for detailed configuration options.

Service Configuration

Service-specific configurations are defined in the compose.yaml file. Each service should have its own Docker Compose service definition and can be associated with Traefik labels for routing and load balancing. Refer to the Traefik documentation for details on configuring services with labels.

About

Demo application showcasing the use of Traefik as a load balancer.

Topics

Resources

Stars

Watchers

Forks