File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 77FROM --platform=linux/amd64 docker.io/node:lts-alpine
88
99ENV NODE_ENV=production
10- ENV HOST =0.0.0.0
11- ENV PORT =3000
10+ ENV AUTH_SERVER_HOST =0.0.0.0
11+ ENV AUTH_SERVER_PORT =3000
1212
1313WORKDIR /app
1414
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { createLitAuthServer } from '@lit-protocol/auth-services';
22import { startAuthServiceWorker } from '@lit-protocol/auth-services' ;
33
44const litAuthServer = createLitAuthServer ( {
5- port : Number ( process . env [ 'PORT ' ] ) || 3000 ,
5+ port : Number ( process . env [ 'AUTH_SERVER_PORT ' ] ) || 3000 ,
66 host : process . env [ 'AUTH_SERVER_HOST' ] ,
77 network : process . env [ 'NETWORK' ] ,
88 litTxsenderRpcUrl : process . env [ 'LIT_TXSENDER_RPC_URL' ] as string ,
Original file line number Diff line number Diff line change 77FROM --platform=linux/amd64 docker.io/node:lts-alpine
88
99ENV NODE_ENV=production
10- ENV HOST =0.0.0.0
11- ENV PORT =3000
10+ ENV LOGIN_SERVER_HOST =0.0.0.0
11+ ENV LOGIN_SERVER_PORT =3000
1212
1313WORKDIR /app
1414
You can’t perform that action at this time.
0 commit comments