Hi pals!
I decided to change the /client/BigBlueButton.html portion of the URL as it is mentioned in
I found a little bit of difference between the files. For example, in the tutorial, it is said to comment out the
# 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;
#}
while I found the following code in the VM file of mine:
# BigBlueButton.html landing page.
#location / {
# root /var/www/bigbluebutton-default;
# index index.html index.htm;
# expires 1m;
#}
Then I created a file (rewrite.nginx) according to the tutorial (in the /etc/bigbluebutton/nginx/ directory), with the following code
location /client/BigBlueButton.html {
rewrite ^ /conference permanent;
}
location /conference {
alias /var/www/bigbluebutton/client;
index BigBlueButton.html;
expires 1m;
}
and I received the
403 Forbidden
nginx/0.7.65error. Then I changed the file to
location / { rewrite ^ /conference permanent;
}
location /conference {
alias /var/www/bigbluebutton/client;
index BigBlueButton.html;
expires 1m;
}
and again faced the same error.
Could you help me with the error?
Thanks in advance!