diff --git a/.env b/.env index 52c6cb8f..04c4e722 100644 --- a/.env +++ b/.env @@ -1,12 +1,15 @@ # Taiga's URLs - Variables to define where Taiga should be served TAIGA_SCHEME=http # serve Taiga using "http" or "https" (secured) connection -TAIGA_DOMAIN=localhost:9000 # Taiga's base URL +# TAIGA_DOMAIN=localhost:9000 Taiga's base URL + +TAIGA_DOMAIN=10.136.55.126:9000 # New URL, fix applied + SUBPATH="" # it'll be appended to the TAIGA_DOMAIN (use either "" or a "/subpath") WEBSOCKETS_SCHEME=ws # events connection protocol (use either "ws" or "wss") # Taiga's Secret Key - Variable to provide cryptographic signing -SECRET_KEY="taiga-secret-key" # Please, change it to an unpredictable value!! +SECRET_KEY="htaatmjVq_oR:9000 + +Example: + +TAIGA_DOMAIN=192.168.1.25:9000 + +After modifying the configuration, restart the containers: + +docker compose down +./launch-taiga.sh + +## Public Registration and Secret Key Configuration + +### Enabling Public Registration + +By default, Taiga Docker deployments disable public user registration. +To allow users to create accounts directly from the login page, add the +following configuration to `docker-compose.yml`. + +In the backend shared environment: + +```yaml +PUBLIC_REGISTER_ENABLED: "True" \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 2f803fc4..7864d2fd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -28,6 +28,7 @@ x-environment: # Telemetry settings ENABLE_TELEMETRY: "${ENABLE_TELEMETRY}" # ...your customizations go here + PUBLIC_REGISTER_ENABLED: "True" x-volumes: &default-back-volumes @@ -103,6 +104,7 @@ services: TAIGA_WEBSOCKETS_URL: "${WEBSOCKETS_SCHEME}://${TAIGA_DOMAIN}" TAIGA_SUBPATH: "${SUBPATH}" # ...your customizations go here + PUBLIC_REGISTER_ENABLED: "true" networks: - taiga # volumes: