angular-xmpp icon indicating copy to clipboard operation
angular-xmpp copied to clipboard

install on buddycloud-vm

Open robotnic opened this issue 10 years ago • 0 comments

install

The angular-xmpp client has no server component. It's possible to use nginx to serve these files

Install in buddycloud-vm

cd /opt 
bower install angular-xmpp 

or

git clone [email protected]:robotnic/angular-xmpp.git

nginx configuration

server { 
  server_name buddycloud.dev;
  listen 80;
  location /api/ {
      proxy_pass http://127.0.0.1:9123/; 
  } 
  location / { 
     proxy_pass http://127.0.0.1:3000/; 
     proxy_http_version 1.1; 
     proxy_set_header Upgrade $http_upgrade; 
    proxy_set_header Connection "upgrade"; 
 } 
 location /bin/ { 
     root /opt/bower_components/angular-xmpp/;
 }
} 

restart nginx

/etc/init.d/nginx restart  

open the client

http://localhost:3000/bin

robotnic avatar May 07 '15 12:05 robotnic