Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
added cache-control to .well-known/browserid. fixes #597
Browse files Browse the repository at this point in the history
  • Loading branch information
dannycoates committed Feb 28, 2014
1 parent dad9acc commit 3e9fa74
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions routes/idp.js
Expand Up @@ -8,6 +8,12 @@ module.exports = function (log, serverPublicKey) {
{
method: 'GET',
path: '/.well-known/browserid',
config: {
cache: {
privacy: 'public',
expiresIn: 10000
}
},
handler: function wellKnown(request, reply) {
log.begin('wellKnown', request)
reply(
Expand Down

0 comments on commit 3e9fa74

Please sign in to comment.