Fix Dockerfile comments.
[arvados.git] / docker / api / omniauth.rb.in
1 # Change this omniauth configuration to point to your registered provider
2 # Since this is a registered application, add the app id and secret here
3 APP_ID = '@@OMNIAUTH_APP_ID@@'
4 APP_SECRET = '@@OMNIAUTH_APP_SECRET@@'
5
6 # Update your custom Omniauth provider URL here
7 CUSTOM_PROVIDER_URL = '@@OMNIAUTH_URL@@'
8
9 Rails.application.config.middleware.use OmniAuth::Builder do
10   provider :josh_id, APP_ID, APP_SECRET, CUSTOM_PROVIDER_URL
11 end