1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 10:49:28 +02:00

Fix dev instance following test instances

This commit is contained in:
Chocobozzz 2023-02-17 10:28:33 +01:00
parent 03902b0099
commit efaf379789
No known key found for this signature in database
GPG key ID: 583A612D890159BE
4 changed files with 3 additions and 6 deletions

View file

@ -10,7 +10,7 @@ function isHostValid (host: string) {
}
// We validate 'localhost', so we don't have the top level domain
if (CONFIG.WEBSERVER.HOSTNAME === 'localhost') {
if (CONFIG.WEBSERVER.HOSTNAME === 'localhost' || CONFIG.WEBSERVER.HOSTNAME === '127.0.0.1') {
isURLOptions.require_tld = false
}