File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ get_docker_md5() {
18
18
}
19
19
20
20
get_go_code_md5 () {
21
- find . -type f \( -name " *.go" -o -name go.mod -o -name go.sum -o -name " *.tmpl" -o -name " version.txt" -o -name " *.js" \) -not -path " ./site*" -exec md5sum {} + | LC_ALL=C sort | md5sum | awk ' { print $1 }'
21
+ find . -type f \( -name " *.go" -o -name go.mod -o -name go.sum -o -name " *.tmpl" -o -name " version.txt" -o -name " *.js" -o -name " *.conf " \) -not -path " ./site*" -exec md5sum {} + | LC_ALL=C sort | md5sum | awk ' { print $1 }'
22
22
}
23
23
24
24
get_tests_md5 () {
Original file line number Diff line number Diff line change 37
37
# to construct the OpenID Connect token request, as per:
38
38
# http://openid.net/specs/openid-connect-core-1_0.html#TokenRequest
39
39
internal ;
40
+
41
+ # Exclude client headers to avoid CORS errors with certain IdPs (e.g., Microsoft Entra ID)
42
+ proxy_pass_request_headers off ;
43
+
40
44
proxy_ssl_server_name on; # For SNI to the IdP
41
45
proxy_set_header Content-Type "application/x-www-form-urlencoded" ;
42
46
proxy_set_header Authorization $arg_secret_basic ;
48
52
# use the proxy_ directives to construct the OpenID Connect token request, as per:
49
53
# https://openid.net/specs/openid-connect-core-1_0.html#RefreshingAccessToken
50
54
internal ;
55
+
56
+ # Exclude client headers to avoid CORS errors with certain IdPs (e.g., Microsoft Entra ID)
57
+ proxy_pass_request_headers off ;
58
+
51
59
proxy_ssl_server_name on; # For SNI to the IdP
52
60
proxy_set_header Content-Type "application/x-www-form-urlencoded" ;
53
61
proxy_set_header Authorization $arg_secret_basic ;
You can’t perform that action at this time.
0 commit comments