Hi Fkitd,
You probably tried,
sudo mv /var/lib/tomcat6/webapps/demo /var/lib/tomcat6/webapps/demo_new
which will rename the folder, but you need to tell nginx to route request to the demo_new. See
cat /etc/bigbluebutton/nginx/demo.nginx
and you'll see
# Forward request to /demo to tomcat. This is for
# the BigBlueButton api demos.
location /demo {
proxy_redirect default;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# Allow 30M uploaded presentation document.
client_max_body_size 30m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
include fastcgi_params;
}
In demo.nginx, change
location /demo {
to
location /demo_new {
(or whatever you renamed the demo folder to) and restart nginx
sudo /etc/init.d/nginx restart
You can now access the demo pages on your server from the new name, such as
Let us know if the above gets you going.
--
BigBlueButton Developer
BigBlueButton on twitter: @bigbluebutton