Skip to content

Commit

Permalink
Merge pull request #374 from ebbba-org/master
Browse files Browse the repository at this point in the history
Merge features from master into bbb/2.7
  • Loading branch information
BrutalBirdie authored Jan 2, 2024
2 parents 25858cb + 3a587a3 commit c873419
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 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 tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
tags: mongodb

- import_tasks: certificate.yml
when: bbb_nginx_listen_https | bool
tags:
- tls
- certificates
Expand Down
8 changes: 0 additions & 8 deletions tasks/monitoring/systemd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@
notify:
- Restart monitoring service

- name: Change ownership directory
file:
path: "{{ bbb_monitoring_systemd_directory }}"
state: directory
owner: bbb-exporter
group: bbb-exporter
mode: "0755"

- name: Ensure pip is installed
apt:
name:
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
4 changes: 4 additions & 0 deletions templates/bbb-webrtc-sfu/bbb-webrtc-sfu.override
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[Unit]
After=syslog.target network.target freeswitch.service kurento-media-server-8888.service kurento-media-server-8889.service kurento-media-server-8890.service redis-server.service
{%if bbb_container_compat %}
[Service]
CPUSchedulingPolicy=
{% endif %}
1 change: 1 addition & 0 deletions templates/monitoring/docker-compose.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ services:
image: greenstatic/bigbluebutton-exporter:{{ bbb_monitoring_exporter_version }}
network_mode: host
volumes:
- "/etc/bigbluebutton/bigbluebutton-release:/etc/bigbluebutton/bigbluebutton-release:ro"
# Can be removed if `RECORDINGS_METRICS_READ_FROM_DISK` is set to false (or omitted).
# See https://bigbluebutton-exporter.greenstatic.dev/exporter-user-guide/#optimizations for details.
- "/var/bigbluebutton:/var/bigbluebutton:ro"
Expand Down

0 comments on commit c873419

Please sign in to comment.