Bigbluebutton 0.81版本出现"403 forbidden"解决方法


Bigbluebutton 0.81版本出现"403 forbidden"解决方法

 

  问题描述:

 > > File var/log/nginx/bigbluebutton.access.log :

 > > appears this lines "2012/11/26 15:26:05 [error] 10400#0: *7 open() "~/dev/bigbluebutton/bigbluebutton-client/client/BigBlueButton.html" failed (13: Permission denied), client: 192.168.232.1, server: 192.168.232.134, request: "GET /client/BigBlueButton.html HTTP/1.1", host: "192.168.232.134", referrer: "http://192.168.232.134/demo/demo1.jsp?username=admin&action=create" "


问题解决方案:

1.重新指向client.nginx路由文件:

sudo ln -f -s /etc/bigbluebutton/nginx/client.nginx  /etc/bigbluebutton/nginx/client.nginx

2.编辑client.nginx文件添置concent:

  
  
  
  
    # BigBlueButton.html is here so we can expire it every 1 minute to
       # prevent caching.
      # location /client/BigBlueButton.html {
      #         root     ar/www/bigbluebutton;
      #         index  index.html index.htm;
      #         expires 1m;
      # }

       # BigBlueButton Flash client.
      # location /client {
      #         root     ar/www/bigbluebutton;
      #         index  index.html index.htm;
      # }

location /client/BigBlueButton.html {

root /home/firstuser/dev/bigbluebutton/bigbluebutton-client;
index index.html index.htm;
expires 1m;
}

# BigBlueButton Flash client.
location /client {
root /home/firstuser/dev/bigbluebutton/bigblu
ebutton-client;
index index
.html index.htm;

}

3.修改文件权限内容

firstuser@ubuntu:~$ cd ~/

firstuser@ubuntu:~$ sudo  chmod  -R  777   ~/



好了,可以直接进入开发模式了!


你可能感兴趣的:(nginx,403,Forbidden,bigbluebutton)