File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed
Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ https://internal.yourcompanycom/oauth2/callback). Click **Register**.
106106with ` --resource ` flag, be sure to append ` /.default ` at the end of the resource name. See
107107https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent#the-default-scope for more details.
108108- When using the Azure Auth provider with nginx and the cookie session store you may find the cookie is too large and doesn't
109- get passed through correctly. Increasing the proxy_buffer_size in nginx or implementing the [ redis session storage] (
110- sessions.md#redis-storage) should resolve this.
109+ get passed through correctly. Increasing the proxy_buffer_size in nginx or implementing the [ redis session storage] ( sessions.md#redis-storage )
110+ should resolve this.
111111
112112### ADFS Auth Provider
113113
Original file line number Diff line number Diff line change @@ -36,24 +36,21 @@ const (
3636)
3737
3838var (
39- // Default Login URL for Azure.
40- // Pre-parsed URL of https://login.microsoftonline.com/common/oauth2/authorize.
39+ // Default Login URL for Azure. Pre-parsed URL of https://login.microsoftonline.com/common/oauth2/authorize.
4140 azureDefaultLoginURL = & url.URL {
4241 Scheme : "https" ,
4342 Host : "login.microsoftonline.com" ,
4443 Path : "/common/oauth2/authorize" ,
4544 }
4645
47- // Default Redeem URL for Azure.
48- // Pre-parsed URL of https://login.microsoftonline.com/common/oauth2/token.
46+ // Default Redeem URL for Azure. Pre-parsed URL of https://login.microsoftonline.com/common/oauth2/token.
4947 azureDefaultRedeemURL = & url.URL {
5048 Scheme : "https" ,
5149 Host : "login.microsoftonline.com" ,
5250 Path : "/common/oauth2/token" ,
5351 }
5452
55- // Default Profile URL for Azure.
56- // Pre-parsed URL of https://graph.microsoft.com/v1.0/me.
53+ // Default Profile URL for Azure. Pre-parsed URL of https://graph.microsoft.com/v1.0/me.
5754 azureDefaultProfileURL = & url.URL {
5855 Scheme : "https" ,
5956 Host : "graph.microsoft.com" ,
You can’t perform that action at this time.
0 commit comments