Skip to content

Commit e16dd74

Browse files
committed
Trying to make CI a bit more happy
1 parent 86c7784 commit e16dd74

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

docs/docs/configuration/auth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ https://internal.yourcompanycom/oauth2/callback). Click **Register**.
106106
with `--resource` flag, be sure to append `/.default` at the end of the resource name. See
107107
https://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

providers/azure.go

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,24 +36,21 @@ const (
3636
)
3737

3838
var (
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",

0 commit comments

Comments
 (0)