1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 05:17:39 +03:00

orchestration beginning

This commit is contained in:
Anton Afanasyeu
2026-05-30 17:55:36 +02:00
parent 95f521c4a0
commit a9a9590698
31 changed files with 1238 additions and 27 deletions

View File

@@ -21,6 +21,20 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
location /app/androidcast_project/build/ {
proxy_pass http://build-fe:8080;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /app/androidcast_project/v0/ota/ {
alias /workspace/orchestration/runtime/ota-artifacts/v0/;
add_header Cache-Control "public, max-age=60";
}
location /app/androidcast_project/ {
alias /workspace/examples/app_hub/;
index index.html;