You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by er...@apache.org on 2019/11/03 13:00:41 UTC

[airavata] branch master updated: Added .yml and ssl certificates for Django UAB gateway

This is an automated email from the ASF dual-hosted git repository.

eroma pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ce1d60  Added .yml and ssl certificates for Django UAB gateway
8ce1d60 is described below

commit 8ce1d60f6f739723ef8669f1cea4171e1b441cf6
Author: Eroma Abeysinghe <er...@gmail.com>
AuthorDate: Sun Nov 3 08:00:31 2019 -0500

    Added .yml and ssl certificates for Django UAB gateway
---
 .../scigap/production/host_vars/uab/vars.yml       | 48 ++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/dev-tools/ansible/inventories/scigap/production/host_vars/uab/vars.yml b/dev-tools/ansible/inventories/scigap/production/host_vars/uab/vars.yml
new file mode 100644
index 0000000..2c4c227
--- /dev/null
+++ b/dev-tools/ansible/inventories/scigap/production/host_vars/uab/vars.yml
@@ -0,0 +1,48 @@
+#
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+---
+vhost_servername: "torana.rc.uab.edu"
+vhost_ssl: True
+ssl_certificate_file: "/etc/letsencrypt/live/torana.rc.uab.edu/cert.pem"
+ssl_certificate_chain_file: "/etc/letsencrypt/live/torana.rc.uab.edu/fullchain.pem"
+ssl_certificate_key_file: "/etc/letsencrypt/live/torana.rc.uab.edu/privkey.pem"
+
+## Keycloak related variables
+tenant_domain: "alabama-birmingham"
+oauth_client_key: "{{ vault_oauth_client_key }}"
+oauth_client_secret: "{{ vault_oauth_client_secret }}"
+
+auth_options:
+  password:
+    name: "University of Alabama at Birmingham Science Gateway"
+  external:
+    - name: "CILogon"
+      idp_alias: "cilogon"
+      logo: "images/cilogon-logo-24x24-b.png"
+
+gateway_id: "alabama-birmingham"
+experiment_data_dir: "{{ user_data_dir }}/alabama-birmingham"
+gateway_data_store_ssh_public_key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDA5artIAZPYC9GmFvb7HpvwbHpYoSXN0xJkHWoz8joWWBA3wW2De2Q72Rk5CYElpOLbrjJCsFK3YxiCQYYRl5R4VFadw0agGIxn0PssCR5sIUDpEe4ezQmEx3rA3RUEvA3uZ6SjzjuwqQtEKMvARP4mCwEC/vR0eLWe1/ZDLF71w7zVZAmt+K/Z/Dnas/NTE7yV9XadD2TctFWmBwMNQSEfSsDfW39cabwEghanoUMGTYT9f4EL6x4zOzdbcHl1aF5QlGHf91hQCwfxH6FSZYmu+HhcKshbOI/I0u+UDKV+CX/1SxUZNpwpJ3ESR4ke7jdgP+GTwwl4bBSTn738m9t"
+
+admin_emails: "[('SGRC', 'sgrc-iu-group@iu.edu'),('Thomas Anthony','tanthony@uab.edu')]"
+portal_title: "The University of Alabama at Birmingham Science Gateway"
+
+...