Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⚗️ Bind API to :: by default #2832

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading