shoehorning graphql, step functions and lamdas. aws deployment scripts

This commit is contained in:
2026-02-06 18:25:42 -03:00
parent 013587d108
commit e642908abb
35 changed files with 2354 additions and 930 deletions

View File

@@ -21,6 +21,10 @@ http {
server timeline:5173;
}
upstream minio {
server minio:9000;
}
server {
listen 80;
server_name mpr.local.ar;
@@ -67,16 +71,15 @@ http {
proxy_set_header Host $host;
}
# Media files - input (source)
location /media/in {
alias /app/media/in;
autoindex on;
# Media files - proxied from MinIO (local) or S3 (AWS)
location /media/in/ {
proxy_pass http://minio/mpr-media-in/;
proxy_set_header Host $http_host;
}
# Media files - output (transcoded)
location /media/out {
alias /app/media/out;
autoindex on;
location /media/out/ {
proxy_pass http://minio/mpr-media-out/;
proxy_set_header Host $http_host;
}
# Default to Timeline UI