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() {
1818}
1919
2020get_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 }'
2222}
2323
2424get_tests_md5 () {
Original file line number Diff line number Diff line change 3737 # to construct the OpenID Connect token request, as per:
3838 # http://openid.net/specs/openid-connect-core-1_0.html#TokenRequest
3939 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+
4044 proxy_ssl_server_name on; # For SNI to the IdP
4145 proxy_set_header Content-Type "application/x-www-form-urlencoded" ;
4246 proxy_set_header Authorization $arg_secret_basic ;
4852 # use the proxy_ directives to construct the OpenID Connect token request, as per:
4953 # https://openid.net/specs/openid-connect-core-1_0.html#RefreshingAccessToken
5054 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+
5159 proxy_ssl_server_name on; # For SNI to the IdP
5260 proxy_set_header Content-Type "application/x-www-form-urlencoded" ;
5361 proxy_set_header Authorization $arg_secret_basic ;
You can’t perform that action at this time.
0 commit comments