Rpxy fails with unhelpful error message #581
|
Hello! I'm trying to use rpxy as TLS-terminating Web proxy that distributes work to applications. Right now I'm tryin to implement simplest possible configuration: listen_port = 2080 # TODO
listen_port_tls = 2443
listen_address_v4 = ['127.0.0.1']
listen_address_v6 = ['::1']
https_redirection_port = 443
[apps]
[apps."web"]
server_name = 'server.fqdn'
tls = { https_redirection = true, acme = true }
[[apps.web.reverse_proxy]]
upstream = [
{ location = 'localhost:3080' },
]
upstream_options = [
"keep_original_host",
"forwarded_header",
]
[experimental.h3]
[experimental.acme]
email = "domain-keeper@example.com"
registry_path = "/var/lib/rpxy/acme"
[experimental.tcp_recv_proxy_protocol]
trusted_proxies = ["127.0.0.1/32", "::1/128"]Unfortunately, it fails with following log entries: I can't understand neither what the problem is with, and where it happens. Did I misconfigured something? |
Answered by
junkurihara
Jun 5, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is actually a bug of an upstream dependency. Move this to an issue #583