diff --git a/conf.d/gfa-status-test.psi.ch b/conf.d/gfa-status-test.psi.ch index ebba08d..b7fec56 100644 --- a/conf.d/gfa-status-test.psi.ch +++ b/conf.d/gfa-status-test.psi.ch @@ -12,7 +12,7 @@ server { ssl_certificate_key /etc/nginx/private/gfa-status-test.psi.ch.key; location / { - proxy_pass http://gfa-status-test_app:80; + proxy_pass http://gfa-status-test:80; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; diff --git a/docker-compose.yaml b/docker-compose.yaml index 32a0f37..a2f5d58 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -100,7 +100,17 @@ services: networks: - hedgedoc_backend + #Andreas Luedeke + gfa-status-test: + image: httpd + container_name: gfa-status-test + volumes: /opt/webcontent/gfa-status/web:/usr/local/apache2/htdocs/ + restart: always + networks: + - backend + networks: public: backend: hedgedoc_backend: +