25 lines
419 B
YAML
25 lines
419 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: caddy-config
|
|
namespace: default
|
|
data:
|
|
Caddyfile: |
|
|
{
|
|
auto_https off
|
|
}
|
|
|
|
:11110 {
|
|
route {
|
|
host example.com {
|
|
reverse_proxy localhost:8080
|
|
}
|
|
host sub.example.com {
|
|
reverse_proxy localhost:8081
|
|
}
|
|
host another.example.com {
|
|
reverse_proxy localhost:8082
|
|
}
|
|
}
|
|
}
|