23 lines
369 B
Caddyfile
23 lines
369 B
Caddyfile
marvinkrausser.com {
|
|
reverse_proxy cnn_website:8080
|
|
}
|
|
|
|
api.marvinkrausser.com {
|
|
reverse_proxy cnn_api:8000
|
|
}
|
|
|
|
portfolio.marvinkrausser.com {
|
|
reverse_proxy portfolio_website:8081
|
|
}
|
|
|
|
http://localhost:8080 {
|
|
reverse_proxy cnn_website:8080
|
|
}
|
|
|
|
http://localhost:8000 {
|
|
reverse_proxy cnn_api:8000
|
|
}
|
|
|
|
http://localhost:8081 {
|
|
reverse_proxy portfolio_website:8081
|
|
} |