Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GUACAMOLE-1723: Document properties for access window enforcement. #233

Merged
merged 1 commit into from
Aug 26, 2024
Merged
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
28 changes: 28 additions & 0 deletions src/jdbc-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,34 @@ sqlserver-auto-create-accounts: true
```
:::

### Access window enforcment

Guacamole supports the use of access windows to limit the time periods
during which users are allowed to access the system. Prior to version
1.6.0, this would only restrict the times when a user could log on,
but would not impact actively running sessions - that is, a user
could continue an active session after their access window had expired.
Starting in version 1.6.0, Guacamole will, by default, forcible log
users off of the system as soon as the access window expires. This
behavior can be changed if the prior behavior is desired, by disabling
the enforcement of this policy during active sessions.

:::{tab} MySQL
```
mysql-enforce-access-windows-for-active-sessions: false
```

:::{tab} PostgreSQL
```
postgresql-enforce-access-windows-for-active-sessions: false
```

:::{tab} SQL Server
```
sqlserver-enforce-access-windows-for-active-sessions: false
```
:::

### Completing the installation

Guacamole will only reread `guacamole.properties` and load newly-installed
Expand Down
Loading