Merge pull request 'add scicat-rocrate QA' (#13) from data-catalog-services/WebHosting_DMZ:scicat-rocrate into main

Reviewed-on: linux/WebHosting_DMZ#13
Reviewed-by: bruhn_b <basil.bruhn@psi.ch>
This commit is contained in:
2026-07-01 12:20:47 +02:00
2 changed files with 38 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
erver {
listen 80;
server_name scicat-rocrate-qa.psi.ch;
client_max_body_size 10G;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
client_max_body_size 10G;
server_name scicat-rocrate-qa.psi.ch;
ssl_certificate /etc/nginx/certs/lx-docker-dmz-01.psi.ch.crt;
ssl_certificate_key /etc/nginx/private/lx-docker-dmz-01.psi.ch.key;
location / {
proxy_pass http://scicat-rocrate-qa:8080;
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;
proxy_set_header Cookie $http_cookie;
proxy_set_header Authorization $http_authorization;
}
}
+13
View File
@@ -177,6 +177,19 @@ services:
- rhodo_network
- backend
scicat-rocrate-qa:
image: gitea.psi.ch/data-catalog-services/scicat-rocrate:2.5.2
container_name: scicat-rocrate-qa
restart: always
networks:
- backend
environment:
- QUARKUS_REST_CLIENT_SCICAT_URL=https://dacat-qa.psi.ch
- QUARKUS_REST_CLIENT_S3BROKER_URL=https://s3-broker.qa.psi.ch
- QUARKUS_HTTP_LIMITS_MAX_BODY_SIZE=10G
volumes:
- /mount/rocrate/qa:/rocrate:rw
networks:
public:
backend: