Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Some basic examples using popular reverse proxies

License

Notifications You must be signed in to change notification settings

runeron/examples-reverse-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

examples-reverse-proxy

Some basic examples using popular reverse proxies, to get you started.

USING DOCKER-COMPOSE

# MAKEFILE: Example testing envoy proxy, with 3 backend services
make dc-envoy
watch 'curl -v localhost:8080' # CTRL-C to stop
make dcd-envoy
# MANUALLY: Example testing envoy proxy, with 3 backend services
cd ./docker-compose
docker-compose -f docker-compose.yaml -f docker-compose.envoy.yaml up -d
watch 'curl -v localhost:8080' # CTRL-C to stop
docker-compose -f docker-compose.yaml -f docker-compose.envoy.yaml down

USING TERRAFORM

# MAKEFILE: Example testing traefik proxy, with 3 backend services
make tf-traefik
watch 'curl -v localhost:8080' # CTRL-C to stop
make tfd-traefik
# MANUALLY: Example testing traefik proxy (default), with 3 backend services
cd ./terraform
terraform apply -auto-approve
watch 'curl -v localhost:8080' # CTRL-C to stop
terraform destroy -auto-approve

About

Some basic examples using popular reverse proxies

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published