Hey everyone
I’m trying to forward http & https traffic to backend server 10.0.11.45 without terminating SSL on vyos.
Following the steps here:
https://docs.vyos.io/en/latest/configuration/loadbalancing/reverse-proxy.html
show load-balancing reverse-proxy
backend http {
server backend {
address 10.0.11.45
port 80
}
}
backend https {
server backend-ssl {
address 10.0.11.45
port 443
}
}
service http {
backend http
listen-address 38.99.139.244
mode http
port 80
}
service https {
backend https
listen-address 38.99.139.244
mode http
port 443
}
I’m able to access http traffic, however https traffic doesn’t seem to work
curl -k https://38.99.139.244
curl: (35) OpenSSL/3.0.9: error:0A00010B:SSL routines::wrong version number
is my configuration correct?