v333 and disable sign-up instructions

This commit is contained in:
Alexey Zinoviev
2024-10-21 10:57:11 +04:00
parent 8325afaae5
commit f3bd796794
4 changed files with 23 additions and 3 deletions
+20
View File
@@ -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
View File
@@ -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
+1 -1
View File
@@ -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
View File
@@ -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