diff options
author | Roger Zanoni <rzanoni@igalia.com> | 2023-12-28 23:10:34 +0000 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-01-29 12:08:33 +0000 |
commit | d5c1fb29dc1ae6f5d0dd6ddba1657a1feb1b9f62 (patch) | |
tree | bdc07eebb71bd1930df53db4781c6c0306fb4b3d /recipes-wam/wam | |
parent | 608d983bdfb90929689bd0eb31e4bc5ca11f8881 (diff) |
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 <rzanoni@igalia.com>
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 <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'recipes-wam/wam')
-rw-r--r-- | recipes-wam/wam/files/WebAppMgr-cef.env | 1 | ||||
-rw-r--r-- | recipes-wam/wam/wam_git.bb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/recipes-wam/wam/files/WebAppMgr-cef.env b/recipes-wam/wam/files/WebAppMgr-cef.env index 557f0d482..adc18b94d 100644 --- a/recipes-wam/wam/files/WebAppMgr-cef.env +++ b/recipes-wam/wam/files/WebAppMgr-cef.env @@ -77,4 +77,5 @@ WAM_SWITCHES="\ --agl-shell-appid=homescreen \ --disable-gpu-vsync \ --ignore-gpu-blocklist \ + --allow-universal-access-from-files \ --allow-file-access-from-files" diff --git a/recipes-wam/wam/wam_git.bb b/recipes-wam/wam/wam_git.bb index 9f2c79ad1..f80433c4a 100644 --- a/recipes-wam/wam/wam_git.bb +++ b/recipes-wam/wam/wam_git.bb @@ -52,7 +52,7 @@ FILES:${PN} += "${sysconfdir}/init \ ${bindir} \ ${libdir}/webappmanager/plugins/*.so" -RDEPENDS:${PN} += " bash" +RDEPENDS:${PN} += " bash grpc-web-proxy" PROVIDES += "virtual/webruntime" RPROVIDES:${PN} += "virtual/webruntime" |