An open API service indexing awesome lists of open source software.

https://github.com/mateusz-lisowski/caddy-stencil

Caddy web reverse proxy server stencil setup with docker and docker-compose.
https://github.com/mateusz-lisowski/caddy-stencil

caddy docker docker-compose

Last synced: 2 months ago
JSON representation

Caddy web reverse proxy server stencil setup with docker and docker-compose.

Awesome Lists containing this project

README

          

# Caddy reverse proxy server

Standard Caddy web server deployed with docker compose.

## !!! Important !!!
As caddy is going to work as a reverse proxy with another docker compose stacks,
you need to create an external docker network first.
After that, use the name of the network to connect to other docker stacks.

Remember to remove port mapping from all docker-compose files,
as Caddy is going to handle them automatically.

You are unable to use this project from the get-go.
You will have to change the **caddy/Caddyfile**
and adjust it to your actual services.

## Helpful commands

Below, you can find some helpful commands to set up the project properly.

### Create external docker network for all docker-compose stacks
```commandline
docker network create caddy-proxy-network
```