Skip to content

Commit

Permalink
ACTUALLY fix docker.
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgul committed Aug 20, 2023
1 parent 0354e30 commit 24fee06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ auth:
clientSecret: $CLIENT_SECRET
http:
secure: false,
port: $SERVER_PORT
port: 5678
database:
client: 'better-sqlite3'
connection:
Expand Down
2 changes: 1 addition & 1 deletion src/server/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ async function main() : Promise<{ app : Express, sio : any, server : any }>
setSIOInstance(sio);

// Start the server
server.listen(config.http.port, '0.0.0.0', () =>
server.listen(config.http.port, () =>
{
const { address, port } = server.address() as AddressInfo;
const host = address === '::' ? 'localhost' : address;
Expand Down

0 comments on commit 24fee06

Please sign in to comment.