Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion website/docs/getting-started/setup/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ With Appsmith, you can manage user access and authentication methods in your ins

<dd>

Set to `true` to turn off the default username and password login. Useful for administrators who want to enforce Single Sign-On (SSO) or limit authentication methods for added security and control.
Set to `true` to turn off the default username and password login when the instance is first configured. Useful for administrators who want to enforce Single Sign-On (SSO) or limit authentication methods for added security and control.

Changing this variable after that initial setup does **not** update form login behavior in a running instance. To change form login afterward, use [`appsmithctl enable-form-login`](/getting-started/setup/instance-management/appsmithctl#enable-form-login) (alias `appsmithctl efl`) or toggle **Form Login** under **Admin Settings → User Management**, as described in [User Management](/getting-started/setup/instance-configuration/user-management#authentication).
</dd>

### Security
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,21 @@ For more information about restoring an Appsmith instance, see [Restore Instance

For more information about restoring the Appsmith database, see [Restore Database](/getting-started/setup/instance-management/backup-and-restore/restore-database) guide.
</dd>

#### `enable-form-login`

<dd>
Use this when you need to turn **form login** (email and password sign-in) back on for your Appsmith instance.

```bash
appsmithctl enable-form-login
```

You can also use the short alias:

```bash
appsmithctl efl
```

To change form login from the Admin Settings UI instead, see [User Management](/getting-started/setup/instance-configuration/user-management#authentication).
</dd>
Loading