26 lines
436 B
Caddyfile
26 lines
436 B
Caddyfile
marvinkrausser.com {
|
|
reverse_proxy cnn_website:8080
|
|
|
|
log {
|
|
output file /data/caddy/logs/cnn.access.log
|
|
format console
|
|
}
|
|
}
|
|
|
|
api.marvinkrausser.com {
|
|
reverse_proxy cnn_api:8000
|
|
|
|
log {
|
|
output file /data/caddy/logs/api.access.log
|
|
format console
|
|
}
|
|
}
|
|
|
|
portfolio.marvinkrausser.com {
|
|
reverse_proxy portfolio_website:8081
|
|
|
|
log {
|
|
output file /data/caddy/logs/portfolio.access.log
|
|
format console
|
|
}
|
|
} |