From ed436ff9a9946a08e716b015367e4d732e8c8e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Dom=C3=ADnguez?= Date: Tue, 10 Oct 2023 16:04:44 +0200 Subject: [PATCH] Redirect Human Cell Atlas subdomain to Single Cell subdomain --- templates/nginx/galaxy-main.j2 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/templates/nginx/galaxy-main.j2 b/templates/nginx/galaxy-main.j2 index dbff7aec5..b229bf7c9 100644 --- a/templates/nginx/galaxy-main.j2 +++ b/templates/nginx/galaxy-main.j2 @@ -305,3 +305,12 @@ server { client_max_body_size 1G; # aka max upload size, defaults to 1M } + +server { + listen 443 ssl; + listen [::]:443 ssl; + + server_name humancellatlas.usegalaxy.eu; + + return 302 $scheme://singlecell.usegalaxy.eu$request_uri; +}