Skip to content

Commit 6f49fc9

Browse files
fix: update Ip address to allow masterkey
1 parent bbf3cc2 commit 6f49fc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/OpenSignServer/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const config = {
8383
appId: process.env.APP_ID || 'myAppId',
8484
maxLimit: 500,
8585
masterKey: process.env.MASTER_KEY, //Add your master key here. Keep it secret!
86-
masterKeyIps: ['0.0.0.0/0', '::1'], // '::1'
86+
masterKeyIps: ['0.0.0.0/0', '::/0'], // '::1'
8787
serverURL: process.env.SERVER_URL || 'http://localhost:8080/app', // Don't forget to change to https if needed
8888
verifyUserEmails: process.env.SMTP_ENABLE || process.env.MAILGUN_API_KEY ? true : false,
8989
publicServerURL: process.env.SERVER_URL || 'http://localhost:8080/app',

0 commit comments

Comments
 (0)