diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-25 09:56:36 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-25 09:56:36 -0700 |
commit | a4cd20471305564ef36e62c9f6054968a03a02da (patch) | |
tree | 9cd12a81ae533a6e94e8908c7fc10c4b7b2f64c6 /example/index.js | |
parent | 0f20642ff63ad166199a6ed952af264f5046a387 (diff) |
Switch to more generic domain
Diffstat (limited to 'example/index.js')
-rw-r--r-- | example/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/index.js b/example/index.js index 243da2f..300c4fd 100644 --- a/example/index.js +++ b/example/index.js @@ -28,7 +28,7 @@ app.use(express.json()); * RP ID represents the "scope" of websites on which a authenticator should be usable. The Origin * represents the expected URL from which an attestation or assertion occurs. */ -const rpID = 'dev.dontneeda.pw'; +const rpID = 'dev.yourdomain.com'; const origin = `https://${rpID}`; /** * A new, random value needs to be generated every time an attestation or an assertion is performed! |