25 lines
764 B
Markdown
25 lines
764 B
Markdown
# traefik-vs-nginx-docker
|
|
|
|
Examples showing how to use Traefik and Nginx for Reverse Proxy.
|
|
|
|
This repository is to complement my blog post on this topic, [Traefik vs Nginx for Reverse Proxy with Docker on a Raspberry Pi](https://www.alexhyett.com/traefik-vs-nginx-docker-raspberry-pi).
|
|
|
|
## NGINX Example
|
|
|
|
```
|
|
docker-compose -f docker-compose.nginx.yml up
|
|
```
|
|
|
|
You will then be able to access whoami from http://localhost/whoami.
|
|
|
|
## Traefik Example
|
|
|
|
For traefik I have included 2 version, one insecure version for local use and a SSL password protected version.
|
|
|
|
### Insecure version
|
|
|
|
```
|
|
docker-compose -f docker-compose.traefik.yml up
|
|
```
|
|
|
|
You will then be able to access whoami from http://localhost/whoami and the Traefik dashboard from http://localhost:8080.
|