Skip to content
Snippets Groups Projects
Commit fd377d11 authored by Richard Alam's avatar Richard Alam
Browse files

- add new directive in nginx conf to expire BigBlueButton.html every minute to prevent caching.

parent 1459c573
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,14 @@ server {
index index.html index.htm;
}
# BigBlueButton.html is here so we can expire it every 1 minute to
# prevent caching.
location /client/BigBlueButton.html {
root /var/www/bigbluebutton;
index index.html index.htm;
expires 1m;
}
# BigBlueButton Flash client.
location /client {
root /var/www/bigbluebutton;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment