feat(installer)!: change default listen port to 8080 (#2852)
Closes #2575 Closes #2543 BREAKING CHANGE: The default listen port for the installer is now `8080`. We recommend that you put a reverse proxy in front of LibreTime.
This commit is contained in:
parent
43221d9d7f
commit
f72b7f9c97
6 changed files with 13 additions and 22 deletions
|
@ -31,7 +31,7 @@ services:
|
|||
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
|
||||
- libretime_playout:/app
|
||||
environment:
|
||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx
|
||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx:8080
|
||||
|
||||
liquidsoap:
|
||||
image: ghcr.io/libretime/libretime-playout:${LIBRETIME_VERSION:-latest}
|
||||
|
@ -48,7 +48,7 @@ services:
|
|||
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
|
||||
- libretime_playout:/app
|
||||
environment:
|
||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx
|
||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx:8080
|
||||
|
||||
analyzer:
|
||||
image: ghcr.io/libretime/libretime-analyzer:${LIBRETIME_VERSION:-latest}
|
||||
|
@ -61,7 +61,7 @@ services:
|
|||
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
|
||||
- libretime_storage:/srv/libretime
|
||||
environment:
|
||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx
|
||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx:8080
|
||||
|
||||
worker:
|
||||
image: ghcr.io/libretime/libretime-worker:${LIBRETIME_VERSION:-latest}
|
||||
|
@ -73,7 +73,7 @@ services:
|
|||
volumes:
|
||||
- ${LIBRETIME_CONFIG_FILEPATH:-./config.yml}:/etc/libretime/config.yml:ro
|
||||
environment:
|
||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx
|
||||
LIBRETIME_GENERAL_PUBLIC_URL: http://nginx:8080
|
||||
|
||||
api:
|
||||
image: ghcr.io/libretime/libretime-api:${LIBRETIME_VERSION:-latest}
|
||||
|
@ -103,7 +103,7 @@ services:
|
|||
nginx:
|
||||
image: nginx
|
||||
ports:
|
||||
- 8080:80
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- legacy
|
||||
volumes:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue