Skip to content

Commit

Permalink
Merge pull request #939 from kysrpex/human_cell_atlas_subdomain_redirect
Browse files Browse the repository at this point in the history
Redirect Human Cell Atlas subdomain to Single Cell subdomain
  • Loading branch information
kysrpex authored Oct 10, 2023
2 parents 3153728 + ed436ff commit 4b77c4d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions templates/nginx/galaxy-main.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 4b77c4d

Please sign in to comment.