Skip to content

musharing-team/Musharing-Server

Repository files navigation

Musharing-Server

Build Status PRs Welcome GitHub license

A New Way of Music Sharing in the Internet Era.

Musharing is an Android app for immediately sharing music via the Internet with your friends. It offers you the possibility of simulcasting a song on different phones no matter how far apart they are. More attractive, with musharing, you can chat with your friends in the background of real synchronized music playing.

What behind this app is this simple but strong server. Being coded in only hundreds of lines, it offers connections of different musharing users, with which they could attend a room, then chat freely as well as safely. This server NEVER records users' messages and everything about a account will be encrypted. Only the unexpected behaves will be logged (the account information will be encrypted, too) for debug.

This repository is the Back-End Server for Musharing, if you are seeking the Android App of Musharing please click here.

P.S. I am terribly sorry that, for convenience to deploy, I put the venv into the repository (actually, I have even not written a .gitignore), which is disgusting. Just be kind to forgive me, please. 🙏

Deploy

  1. Fork this repositories to the server (E.g. cp it to /home/admin/ser/musharing_ser);
  2. Including the musharing_ser_nginx_conf.conf in nginx.conf;

E.g. Let's say the negix conf file is /etc/nginx/nginx.conf, we may want to fix it as follow:

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

# Server for Gunicorn->musharing_ser
include /home/admin/ser/musharing_ser/musharing_ser_nginx_conf.conf;

# Settings for a TLS enabled server.
#
#    server {
#        listen       443 ssl http2 default_server;
#        listen       [::]:443 ssl http2 default_server;
#        server_name  _;
#        root         /usr/share/nginx/html;
#
#        ssl_certificate "/etc/pki/nginx/server.crt";
#        ssl_certificate_key "/etc/pki/nginx/private/server.key";
#        ssl_session_cache shared:SSL:1m;
#        ssl_session_timeout  10m;
#        ssl_ciphers HIGH:!aNULL:!MD5;
#        ssl_prefer_server_ciphers on;
#
#        # Load configuration files for the default server block.
#        include /etc/nginx/default.d/*.conf;
#
#        location / {
#        }
#
#        error_page 404 /404.html;
#            location = /40x.html {
#        }
#
#        error_page 500 502 503 504 /50x.html;
#            location = /50x.html {
#        }
#    }

}
  1. Run:
$ cd /home/admin/ser/musharing_ser
$ export PATH = $PATH:/home/admin/ser/musharing_ser/venv/bin
$ gunicorn -b 127.0.0.1:8080 -w 1 --chdir /home/admin/ser/musharing_ser --daemon ser:app

Licensing

MIT License

Copyright (c) 2019 Musharing Team

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.