mod_auth_openid
mod_auth_openid copied to clipboard
Error in authentication: openid.modauthopenid.nonce: no such field
With mod_auth_openid 0.6 (installed with Chef) configured as follows to protect a subdirectory of my site…
<Location /admin>
AuthType OpenID
require user <%= @node[:apache][:allowed_openids].join(' ') %>
AuthOpenIDDBLocation <%= @node[:apache][:mod_auth_openid][:dblocation] %>
</Location>
…every authentication attempt fails with “There has been an error while attempting to authenticate.”. This is what appears in the Apache error log:
[Thu Dec 06 05:09:12 2012] [error] [client 10.176.94.172] Error in authentication: openid.modauthopenid.nonce: no such field
What am I doing wrong?
Note: deleting my mod_auth_openid.db file and restarting Apache has no effect.
I too get this problem - here's my configuration
Interestingly though, the same configuration seems to work when I go straight to the server but not when it sits behind a load balancer.
Did you manage to resolve the problem?
Thank you