From d5c1fb29dc1ae6f5d0dd6ddba1657a1feb1b9f62 Mon Sep 17 00:00:00 2001 From: Roger Zanoni Date: Thu, 28 Dec 2023 23:10:34 +0000 Subject: Add a reverse proxy to enable grpc-web for webapps This is needed because there's no browser api with enough control over http/2 requests, so we need a proxy that connects to the RPC backend and handle the communication between the app and service. The service is named "databroker-grpc-web-proxy.service" because each proxy instance connects to only one gRPC service, more services will be added to connect to other gRPC services. Bug-AGL: SPEC-4599 Signed-off-by: Roger Zanoni Change-Id: I3b5bf6521dc0683639520626819c6a54be839e53 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/29425 ci-image-build: Jenkins Job builder account ci-image-boot-test: Jenkins Job builder account Tested-by: Jenkins Job builder account Reviewed-by: Jan-Simon Moeller --- .../grpc-web-proxy/files/databroker-grpc-web-proxy.service | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 recipes-wam/grpc-web-proxy/files/databroker-grpc-web-proxy.service (limited to 'recipes-wam/grpc-web-proxy/files/databroker-grpc-web-proxy.service') diff --git a/recipes-wam/grpc-web-proxy/files/databroker-grpc-web-proxy.service b/recipes-wam/grpc-web-proxy/files/databroker-grpc-web-proxy.service new file mode 100644 index 000000000..ff6afe44d --- /dev/null +++ b/recipes-wam/grpc-web-proxy/files/databroker-grpc-web-proxy.service @@ -0,0 +1,13 @@ +[Unit] +Description=gRPC web reverse proxy to kuksa.val databroker +Requires=kuksa-databroker.service +After=kuksa-databroker.service + +[Service] +User=kuksa +EnvironmentFile=-/etc/default/databroker-grpc-web-proxy.env +ExecStart=/usr/bin/grpcwebproxy $EXTRA_ARGS +Restart=on-abort + +[Install] +WantedBy=multi-user.target -- cgit 1.2.3-korg