Skip to content

Commit

Permalink
⚗️ Bind API to :: by default (#2832)
Browse files Browse the repository at this point in the history
  • Loading branch information
moisout authored Jun 14, 2024
1 parent e23313f commit 5ebac96
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 27 deletions.
24 changes: 0 additions & 24 deletions client/plugins/ipv4default.server.ts

This file was deleted.

2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ services:
environment:
VIEWTUBE_DATABASE_HOST: viewtube-db
VIEWTUBE_REDIS_HOST: viewtube-redis
VIEWTUBE_DATA_DIRECTORY: /data
VIEWTUBE_CLUSTERED: false
VIEWTUBE_ADMIN_USER: admin

viewtube-db:
Expand Down
2 changes: 1 addition & 1 deletion server/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const bootstrap = async () => {
app.enableShutdownHooks();

// START
await app.listen(port, '0.0.0.0', (err, _address) => {
await app.listen(port, '::', (err, _address) => {
if (err) {
logger.error(err);
process.exit(1);
Expand Down

0 comments on commit 5ebac96

Please sign in to comment.