mirror of
https://github.com/hcengineering/huly-selfhost.git
synced 2026-09-08 02:37:50 +02:00
v333 and disable sign-up instructions
This commit is contained in:
@@ -180,3 +180,23 @@ Ensure you have configured or add the following environment variable to the fron
|
||||
|
||||
Note: Once all the required environment variables are configured, you will see an additional button on the sign-in/sign-up pages.
|
||||
|
||||
## Disable Sign-Up
|
||||
|
||||
You can disable public sign-ups for a deployment. When configured, sign-ups will only be permitted through an invite link to a specific workspace.
|
||||
|
||||
To implement this, set the following environment variable for both the front and account services:
|
||||
|
||||
```yaml
|
||||
account:
|
||||
...
|
||||
environment:
|
||||
- DISABLE_SIGNUP=true
|
||||
...
|
||||
front:
|
||||
...
|
||||
environment:
|
||||
- DISABLE_SIGNUP=true
|
||||
...
|
||||
```
|
||||
|
||||
_Note: When setting up a new deployment, either create the initial account before disabling sign-ups or use the development tool to create the first account._
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@ case "$NGINX_BEHIND_SSL" in
|
||||
esac
|
||||
|
||||
|
||||
export HULY_VERSION="v0.6.325"
|
||||
export HULY_VERSION="v0.6.333"
|
||||
export NGINX_SERVICE_PORT=$NGINX_SERVICE_PORT
|
||||
export NGINX_HTTP_SCHEME=$NGINX_HTTP_SCHEME
|
||||
export NGINX_WS_SCHEME=$NGINX_WS_SCHEME
|
||||
|
||||
@@ -7,4 +7,4 @@ echo "Setting Huly Server Address: $SERVER_ADDRESS"
|
||||
envsubst < template.conf > nginx.conf
|
||||
envsubst < template.env > .env
|
||||
|
||||
./use-version.sh v0.6.325
|
||||
./use-version.sh v0.6.333
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ if [ -z "$LETSENCRYPT_EMAIL" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
export HULY_VERSION="v0.6.325"
|
||||
export HULY_VERSION="v0.6.333"
|
||||
export SERVER_ADDRESS=$DOMAIN_NAME
|
||||
export LETSENCRYPT_EMAIL=$LETSENCRYPT_EMAIL
|
||||
|
||||
|
||||
Reference in New Issue
Block a user