Add "web-alt" entrypoint (mostly for Icecast)
continuous-integration/drone/push Build is failing Details

This commit is contained in:
3wc 2024-04-01 19:49:23 -03:00
parent f7f77dc942
commit edc29f9594
3 changed files with 22 additions and 6 deletions

View File

@ -60,7 +60,7 @@ COMPOSE_FILE="compose.yml"
#COMPOSE_FILE="$COMPOSE_FILE:compose.wildcard.yml" #COMPOSE_FILE="$COMPOSE_FILE:compose.wildcard.yml"
##################################################################### #####################################################################
# Keycloak log-in # # Authentication #
##################################################################### #####################################################################
## Enable Keycloak ## Enable Keycloak
@ -70,6 +70,12 @@ COMPOSE_FILE="compose.yml"
#KEYCLOAK_MIDDLEWARE_2_ENABLED=1 #KEYCLOAK_MIDDLEWARE_2_ENABLED=1
#KEYCLOAK_TFA_SERVICE_2=traefik-forward-auth_app #KEYCLOAK_TFA_SERVICE_2=traefik-forward-auth_app
## BASIC_AUTH
## Use httpasswd to generate the secret
#COMPOSE_FILE="$COMPOSE_FILE:compose.basicauth.yml"
#BASIC_AUTH=1
#SECRET_USERSFILE_VERSION=v1
##################################################################### #####################################################################
# Prometheus metrics # # Prometheus metrics #
##################################################################### #####################################################################
@ -125,11 +131,10 @@ COMPOSE_FILE="compose.yml"
#COMPOSE_FILE="$COMPOSE_FILE:compose.matrix.yml" #COMPOSE_FILE="$COMPOSE_FILE:compose.matrix.yml"
#MATRIX_FEDERATION_ENABLED=1 #MATRIX_FEDERATION_ENABLED=1
## BASIC_AUTH ## "Web alt", an alternative web port
## Use httpasswd to generate the secret # NOTE(3wc): as of 2024-04-01 only the `icecast` recipe uses this
#COMPOSE_FILE="$COMPOSE_FILE:compose.basicauth.yml" #COMPOSE_FILE="$COMPOSE_FILE:compose.web-alt.yml"
#BASIC_AUTH=1 #WEB_ALT_ENABLED=1
#SECRET_USERSFILE_VERSION=v1
##################################################################### #####################################################################
# Extremely insecure options, do not use # # Extremely insecure options, do not use #

7
compose.web-alt.yml Normal file
View File

@ -0,0 +1,7 @@
version: "3.8"
services:
app:
environment:
- WEB_ALT_ENABLED
ports:
- "8000:8000"

View File

@ -48,6 +48,10 @@ entrypoints:
peertube-rtmp: peertube-rtmp:
address: ":1935" address: ":1935"
{{ end }} {{ end }}
{{ if eq (env "WEB_ALT_ENABLED") "1" }}
web-alt:
address: ":8000"
{{ end }}
{{ if eq (env "SSB_MUXRPC_ENABLED") "1" }} {{ if eq (env "SSB_MUXRPC_ENABLED") "1" }}
ssb-muxrpc: ssb-muxrpc:
address: ":8008" address: ":8008"