mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-22 00:38:03 -06:00
Also use 127.0.0.1 for database and redis
Node 18 can resolve localhost to IPv6 address, where postgresql and/or redis may listen on IPv4 only
This commit is contained in:
parent
2d4274769e
commit
1ba8bbded0
@ -11,7 +11,7 @@ We have many important notes in this release. We know it's a pain for sysadmin,
|
||||
* Remove NodeJS 16 support (see https://nodejs.org/fr/blog/announcements/nodejs16-eol):
|
||||
* Please upgrade to NodeJS 18 before upgrading PeerTube
|
||||
* If you use NodeSource repository, you may have to migrate to their new repository: https://github.com/nodesource/distributions/wiki/How-to-migrate-to-the-new-repository
|
||||
* Check in `production.yaml` that you use `127.0.0.1` instead of `localhost` for `listen.hostname` (https://github.com/Chocobozzz/PeerTube/blob/develop/config/production.yaml.example#L2) to ensure PeerTube is listening on IPv4
|
||||
* Check in `production.yaml` that you use `127.0.0.1` instead of `localhost` for `listen.hostname`, `database.hostname` and `redis.hostname` as Node 18 favours IPv6 for `localhost` resolution
|
||||
|
||||
* Remove WebTorrent support in player:
|
||||
* "WebTorrent videos" are renamed to "Web Video". The video format is the same, we just stop to use P2P for these videos
|
||||
|
@ -70,7 +70,7 @@ trust_proxy:
|
||||
|
||||
# Your database name will be database.name OR 'peertube'+database.suffix
|
||||
database:
|
||||
hostname: 'localhost'
|
||||
hostname: '127.0.0.1'
|
||||
port: 5432
|
||||
ssl: false
|
||||
suffix: '_dev'
|
||||
@ -83,7 +83,7 @@ database:
|
||||
# You can also specify a 'socket' path to a unix socket but first need to
|
||||
# set 'hostname' and 'port' to null
|
||||
redis:
|
||||
hostname: 'localhost'
|
||||
hostname: '127.0.0.1'
|
||||
port: 6379
|
||||
auth: null # Used by both standalone and sentinel
|
||||
db: 0
|
||||
|
@ -17,11 +17,11 @@ rates_limit:
|
||||
max: 200
|
||||
|
||||
database:
|
||||
hostname: 'localhost'
|
||||
hostname: '127.0.0.1'
|
||||
port: 5432
|
||||
|
||||
redis:
|
||||
hostname: 'localhost'
|
||||
hostname: '127.0.0.1'
|
||||
|
||||
smtp:
|
||||
hostname: null
|
||||
|
@ -68,7 +68,7 @@ trust_proxy:
|
||||
|
||||
# Your database name will be database.name OR 'peertube'+database.suffix
|
||||
database:
|
||||
hostname: 'localhost'
|
||||
hostname: '127.0.0.1'
|
||||
port: 5432
|
||||
ssl: false
|
||||
suffix: '_prod'
|
||||
@ -81,7 +81,7 @@ database:
|
||||
# You can also specify a 'socket' path to a unix socket but first need to
|
||||
# set 'hostname' and 'port' to null
|
||||
redis:
|
||||
hostname: 'localhost'
|
||||
hostname: '127.0.0.1'
|
||||
port: 6379
|
||||
auth: null # Used by both standalone and sentinel
|
||||
db: 0
|
||||
|
Loading…
Reference in New Issue
Block a user