diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7b8136d --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 5eafa02..1727a6d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # BigBlueButton Docker +[Changelog](CHANGELOG.md) | [Issues](https://github.com/alangecker/bigbluebutton-docker/issues) + ## Features - Easy installation - Greenlight included diff --git a/mod/https/site-ipv4only.conf b/mod/https/site-ipv4only.conf index f5c21fb..8b0abff 100644 --- a/mod/https/site-ipv4only.conf +++ b/mod/https/site-ipv4only.conf @@ -24,5 +24,10 @@ server { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; proxy_cache_bypass $http_upgrade; + + proxy_read_timeout 6h; + proxy_send_timeout 6h; + client_body_timeout 6h; + send_timeout 6h; } } diff --git a/mod/https/site.conf b/mod/https/site.conf index a144563..9b21df6 100644 --- a/mod/https/site.conf +++ b/mod/https/site.conf @@ -24,5 +24,10 @@ server { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; proxy_cache_bypass $http_upgrade; + + proxy_read_timeout 6h; + proxy_send_timeout 6h; + client_body_timeout 6h; + send_timeout 6h; } }