* OMNIAUTH_APP_SECRET is no longer used
authorWard Vandewege <ward@clinicalfuture.com>
Tue, 19 Nov 2013 16:25:07 +0000 (11:25 -0500)
committerWard Vandewege <ward@clinicalfuture.com>
Tue, 19 Nov 2013 16:25:07 +0000 (11:25 -0500)
* We include an omniauth-to-openid gateway container now ('sso')

docker/README
docker/config.rb

index 38ae2a2592a5628518808e8783bf4a45c09611a0..1ab5489c96372a96e8cb85d9ec2b200a56572c0f 100644 (file)
@@ -49,13 +49,10 @@ DEPLOYING
    controller.$API_HOSTNAME
    workbench.$API_HOSTNAME
 
-2. Provision your Omniauth server with the APP_ID and
-   APP_SECRET from api/omniauth.rb.
-
-3. Deploying API:
+2. Deploying API:
    docker run -p 80:80 -p 443:443 arvados/api
 
-4. Deploying Keep:
+3. Deploying Keep:
    mkdir /tmp/keepfs
    mount -t tmpfs -o size=512M tmpfs /tmp/keepfs
    docker run -p 25107:25107 -v /tmp/keepfs:/dev/keep-0 arvados/warehouse
index 547a2548abf7918e789a2084a250d2b62382f0c5..81642bfb4117713444ef14c2fca3b8d044f66ecb 100755 (executable)
@@ -9,12 +9,6 @@ config = YAML.load_file('config.yml')
 # Add dynamically chosen config settings. These settings should
 # be suitable for any installation.
 
-# The APP_SECRET the application uses (with OMNIAUTH_APP_ID) to
-# authenticate itself to Omniauth. By default this is generated
-# randomly when the application is built; you can instead
-# substitute a hardcoded string.
-config['OMNIAUTH_APP_SECRET'] = rand(2**512).to_s(36)
-
 # Any _PW/_SECRET config settings represent passwords/secrets. If they
 # are blank, choose a password randomly.
 config.each_key do |var|