diff --git a/bigbluebutton-client/config/bigbluebutton.nginx b/bigbluebutton-client/config/bigbluebutton.nginx
index 4c524f81995a7e013c3d5307fa92f385939af034..82648ec2e8349fc1fe4f585df41633be50335d28 100644
--- a/bigbluebutton-client/config/bigbluebutton.nginx
+++ b/bigbluebutton-client/config/bigbluebutton.nginx
@@ -39,29 +39,6 @@ server {
            include    fastcgi_params;
        }
 
-	 # Handle request to bbb-web running within Tomcat.  This is for
-	 # the BBB-API and Presentation.
-       location /bigbluebutton {
-           proxy_pass         http://127.0.0.1:8080;
-           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;
-       }
-
 	# BigBlueButton landing page.
         location / {
           root   /var/www/bigbluebutton-default;
@@ -69,20 +46,6 @@ server {
 	  expires 1m;
         }
 
-	# 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;
-                index  index.html index.htm;
-        }
-
 	# Include specific rules for record and playback
         include /etc/bigbluebutton/nginx/*.nginx;