Add documentation in the QE setup tool to show OIDC callback URLs

This commit is contained in:
Joseph Schorr 2017-09-28 14:58:43 -04:00
parent 624258400d
commit f8f0c3e6ae

View file

@ -107,7 +107,7 @@
<span class="config-file-field" filename="ssl.cert" has-file="hasfile.SSLCert"></span>
<div class="help-text">
The certificate must be in PEM format.
</div
</div>
</td>
</tr>
<tr>
@ -1155,8 +1155,15 @@
</td>
</tr>
</table>
</div>
<div>
<h4>Callback URLs for this service:</h4>
<ul>
<li><code>{{ mapped.TLS_SETTING == 'none' ? 'http' : 'https' }}://{{ config.SERVER_HOSTNAME || '(configure server hostname)' }}/oauth2/{{ getOIDCProviderId(provider).toLowerCase() }}/callback</code></li>
<li><code>{{ mapped.TLS_SETTING == 'none' ? 'http' : 'https' }}://{{ config.SERVER_HOSTNAME || '(configure server hostname)' }}/oauth2/{{ getOIDCProviderId(provider).toLowerCase() }}/callback/attach</code></li>
<li><code>{{ mapped.TLS_SETTING == 'none' ? 'http' : 'https' }}://{{ config.SERVER_HOSTNAME || '(configure server hostname)' }}/oauth2/{{ getOIDCProviderId(provider).toLowerCase() }}/callback/cli</code></li>
</ul>
</div>
</div>
</div>
<!-- Add Provider -->