Skip to content

Commit

Permalink
Add 'defaultHttpSessionTimeout'-Setting
Browse files Browse the repository at this point in the history
  • Loading branch information
einhirn committed Sep 13, 2023
1 parent 25858cb commit d746c89
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ Also check [Before you install](https://docs.bigbluebutton.org/administration/in
| | `bbb_ufw_reject_networks_custom` | List of additional networks to be rejected by UFW | Not defined | |
| | `bbb_ssh_port` | Allow and limit the port used for SSH access | `22` | |
| | `bbb_max_file_size_upload`| Maximum file size for an uploaded presentation (default 30MB - number must be in byte) | 30000000| |
| | `bbb_http_session_timeout` | Timeout (seconds) to invalidate inactive HTTP sessions. | `14400` | 4 Hours |
| | `bbb_default_max_users` | Default maximum number of users a meeting can have | `0` | Meeting doesn't have a user limit |
| | `bbb_default_meeting_duration` | Default duration of the meeting in minutes | `0` | Meeting doesn't end |
| | `bbb_max_num_pages` | Maximum number of pages allowed for an uploaded presentation | `200` | |
Expand Down
1 change: 1 addition & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ bbb_mute_on_start: false
bbb_guestpolicy: ALWAYS_ACCEPT
bbb_default_max_users: 0
bbb_default_meeting_duration: 0
bbb_http_session_timeout: 14400
bbb_max_num_pages: 200
bbb_max_file_size_upload: 30000000
bbb_max_conversion_time: 5
Expand Down
1 change: 1 addition & 0 deletions templates/bbb-web/bbb-web.properties.j2
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ allowRequestsWithoutSession={{ bbb_allow_request_without_session | ternary('true
maxNumPages={{ bbb_max_num_pages }}
maxFileSizeUpload={{ bbb_max_file_size_upload }}
defaultGuestPolicy={{ bbb_guestpolicy }}
defaultHttpSessionTimeout={{ bbb_http_session_timeout }}
defaultWelcomeMessage={{ bbb_default_welcome_message }}
beans.presentationService.defaultUploadedPresentation={{ bbb_default_presentation }}
defaultMaxUsers={{ bbb_default_max_users }}
Expand Down

0 comments on commit d746c89

Please sign in to comment.