
Move the openid provider url into groups_openid_provider configuration variable for groups portal. We are separating the productive and staging urls, so productive is pointing to openstackid.org now. Change-Id: Ifc7d5d41b80c3a080800d1d9d1ef394490d93b14
20 lines
467 B
Plaintext
20 lines
467 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Drupal configuration overrides
|
|
*
|
|
*/
|
|
|
|
<% if @conf_cron_key %>
|
|
$conf['cron_key'] = '<%= @conf_cron_key %>';
|
|
<% end %>
|
|
<% if @conf_markdown_directory %>
|
|
$conf['groups_feeds_markdown_directory'] = '<%= @conf_markdown_directory %>';
|
|
<% end %>
|
|
<% if @conf_ga_account %>
|
|
$conf['googleanalytics_account'] = '<%= @conf_ga_account %>';
|
|
<% end %>
|
|
<% if @conf_openid_provider %>
|
|
$conf['groups_openid_provider'] = '<%= @conf_openid_provider %>';
|
|
<% end %> |