Merge pull request #65 from alangecker/develop

Release v2.2.27-2
This commit is contained in:
chandi 2020-10-16 12:53:13 +02:00 committed by GitHub
commit 3f32b3f6f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 47 additions and 0 deletions

35
CHANGELOG.md Normal file
View File

@ -0,0 +1,35 @@
# Changelog
## Unreleased
## Release v2.2.27-2 (2020-10-16)
- Increase proxy timeout to avoid aborting websocket connections @alangecker
- Added a changelog
## Release v2.2.27-1 (2020-10-14)
- Applied BBB v2.2.27 changes https://github.com/bigbluebutton/bigbluebutton/releases/tag/v2.2.27 @alangecker
- Upgrade docker base images (etherpad and bigbluebutton-exporter) @alangecker
## Release v2.2.26-1 (2020-09-29)
- Applied changes from BBB v2.2.24 to v2.2.26 #58 #60 @alangecker
## Release v2.2.23-1 (2020-09-06)
- :tada: Recording #16 by @artemtech and @alangecker
- v2.2.23 changes by @alangecker
- sip_profile extension field #54 by @yksflip
- Remove greenlight container name #49 by @alangecker
## Hotfix (2020-08-15)
- Allow imagemagick to convert to pdf/svg #51 #52 @alangecker
## Release v2.2.22-1 (2020-08-12) #50
- v2.2.22 changes by @alangecker
- Disable freeswitch logfiles inside containers
## Release v2.2.21-1 (2020-7-18)
- Changes for v2.2.21 #44 @alangecker
- expose more BBB settings in .env file #34 @cjhille
- IPv6 Support #32 @alangecker
- Development Mode & Instructions #39 @alangecker
- Prometheus Exporter Integration #40 @alangecker

View File

@ -1,5 +1,7 @@
# BigBlueButton Docker # BigBlueButton Docker
[Changelog](CHANGELOG.md) | [Issues](https://github.com/alangecker/bigbluebutton-docker/issues)
## Features ## Features
- Easy installation - Easy installation
- Greenlight included - Greenlight included

View File

@ -24,5 +24,10 @@ server {
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade; proxy_set_header Connection $connection_upgrade;
proxy_cache_bypass $http_upgrade; proxy_cache_bypass $http_upgrade;
proxy_read_timeout 6h;
proxy_send_timeout 6h;
client_body_timeout 6h;
send_timeout 6h;
} }
} }

View File

@ -24,5 +24,10 @@ server {
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade; proxy_set_header Connection $connection_upgrade;
proxy_cache_bypass $http_upgrade; proxy_cache_bypass $http_upgrade;
proxy_read_timeout 6h;
proxy_send_timeout 6h;
client_body_timeout 6h;
send_timeout 6h;
} }
} }