Skip to content

Commit

Permalink
Default port to 4010 to avoid confusion'
Browse files Browse the repository at this point in the history
  • Loading branch information
birm committed Apr 2, 2020
1 parent 1274675 commit 58c5084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Conslidated Backend, Auth, and Security Services
|---|---|---|
| WORKERS | number of child processes | 4 |
|JWK_URL | jwks url for id provider | (*required*) |
|PORT | the port to use | 8010 |
|PORT | the port to use | 4010 |
|AUD | jwt audience to accept | (if unset, does not check)|
|ISS | jwt issuer to accept |(if unset, does not check)|
|EXPIRY | expire in time for jwks| 1d |
Expand Down
2 changes: 1 addition & 1 deletion caracal.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const dataHandlers = require('./handlers/dataHandlers.js');

var WORKERS = process.env.NUM_THREADS || 4;

var PORT = process.env.PORT || 8010;
var PORT = process.env.PORT || 4010;


const app = express();
Expand Down

0 comments on commit 58c5084

Please sign in to comment.