gRPC-Proxy über pfSense mit HAProxy-Plugin

gRPC-Proxy über pfSense mit HAProxy-Plugin

Ich versuche, einegRPCServer verfügbar überpfSensemitHAProxyLaufen alsPlugin. Ich habe SSL-Terminierung bei HAProxy und es funktioniert für eine Reihe von Hosts einwandfrei. Aber der Versuch, den gRPC-Server einzurichten, schlägt fehl mit:

Ungültige gRPC-Antwort. HTTP-Statuscode: 400

Ich kann das jedoch erfolgreich tun mitNginx Proxy Managerindem Sie Folgendes festlegen inBenutzerdefinierte Nginx-Konfiguration:

underscores_in_headers on;
location / {
    grpc_read_timeout 300s;
    grpc_send_timeout 300s;
    grpc_socket_keepalive on;
    if ($http_content_type = "application/grpc") {
        grpc_pass grpc://10.0.0.5:6000;
    }
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $http_connection;
    proxy_http_version 1.1;
    # Proxy!
    include conf.d/include/proxy.conf;
}

verwandte Informationen