OpenID端点文件包含错误的URL而没有https

时间:2015-08-14 12:33:19

标签: openid atlassian-crowd

我想和Gerrit一起使用OpenID。所有服务均通过反向代理提供。 我访问时     https://subdomain.mycompany.net/openidserver/op

生成XML

<?xml version="1.0" encoding="UTF-8"?>
  <XRDS xmlns="xri://$xrds">
  <XRD xmlns="xri://$xrd*($v*2.0)">
<Service>
  <Type>http://specs.openid.net/auth/2.0/server</Type>
  <URI>http://subdomain.mycompany.net/openidserver/op</URI>
</Service>
</XRD>
</XRDS>

正确的openidserver网址应该是https而不是http

 <?xml version="1.0" encoding="UTF-8"?>
  <XRDS xmlns="xri://$xrds">
  <XRD xmlns="xri://$xrd*($v*2.0)">
<Service>
  <Type>http://specs.openid.net/auth/2.0/server</Type>
  <URI>https://subdomain.mycompany.net/openidserver/op</URI>
</Service>
</XRD>
</XRDS>

据我所知,Gerrit使用此信息来执行登录。 openid服务器中的基本网址已经配置为&#34; https://subdomain.mycompany.net/openidserver/&#34;

是否有任何选项可以更改/ openidserver / op将提供的网址? // Philipp

0 个答案:

没有答案