Skip to content

Commit

Permalink
Create https redirects for Galaxy installers on galaxy04 (which runs
Browse files Browse the repository at this point in the history
Apache on port 80 for CVMFS).
  • Loading branch information
natefoo committed Aug 31, 2016
1 parent dc0f1c9 commit 09756ce
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
18 changes: 18 additions & 0 deletions galaxyenv/files/apache/galaxy-installers.conf
@@ -0,0 +1,18 @@
##
## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN
##

<VirtualHost *:80>
ServerName galaxy04.tacc.utexas.edu
ServerAlias cvmfs0-tacc0.galaxyproject.org galaxy04 localhost
</VirtualHost>

<VirtualHost *:80>
ServerName test-installer.galaxyproject.org
Redirect "/" "https://test-installer.galaxyproject.org"
</VirtualHost>

<VirtualHost *:80>
ServerName main-installer.galaxyproject.org
Redirect "/" "https://main-installer.galaxyproject.org"
</VirtualHost>
5 changes: 5 additions & 0 deletions galaxyenv/host_vars/cvmfs0-tacc0.galaxyproject.org.yml
Expand Up @@ -27,3 +27,8 @@ host_yum_repositories:

host_packages:
- docker-engine

group_files:
- src: files/apache/galaxy-installers.conf
dest: /etc/httpd/conf.d/galaxy-installers.conf
backup: true

0 comments on commit 09756ce

Please sign in to comment.