|
|
|
@ -18,7 +18,7 @@ spec: |
|
|
|
containers: |
|
|
|
# Backend container |
|
|
|
- name: trialytix-backend |
|
|
|
image: packages.semapp.lan:5000/trialytix_backend:1.8.0-rc1 |
|
|
|
image: packages.semapp.lan:5000/trialytix_backend:1.9.4-rc1 |
|
|
|
resources: |
|
|
|
requests: |
|
|
|
memory: "512Mi" |
|
|
|
@ -36,7 +36,7 @@ spec: |
|
|
|
imagePullPolicy: Always |
|
|
|
# Frontend container |
|
|
|
- name: trialytix-frontend |
|
|
|
image: packages.semapp.lan:5000/trialytix_frontend:1.8.0-rc1 |
|
|
|
image: packages.semapp.lan:5000/trialytix_frontend:1.9.4-rc1 |
|
|
|
resources: |
|
|
|
requests: |
|
|
|
memory: "512Mi" |
|
|
|
@ -124,6 +124,15 @@ data: |
|
|
|
send_timeout 300s; |
|
|
|
} |
|
|
|
|
|
|
|
location /storage { |
|
|
|
proxy_pass http://backend; |
|
|
|
proxy_redirect off; |
|
|
|
|
|
|
|
proxy_set_header Host $host; |
|
|
|
proxy_set_header X-Real-IP $remote_addr; |
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
|
|
|
} |
|
|
|
|
|
|
|
error_page 404 =200 /index.html; |
|
|
|
|
|
|
|
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0'; |
|
|
|
|