UnblockNeteaseMusic
A proxy server for Netease Music...
Dependencies
- Python 2.7 installed and added to path.
- Node.js 4.x+
How to use
git clone https://github.com/ITJesse/UnblockNeteaseMusic.git
npm install
npm start
Windows users
Just simply change your proxy to 127.0.0.1:8123
and restart client.
Others (reverse Proxy by nginx)
- Install nginx.
- Create a new vhost with the conf file below.
- Start nginx.
- Add a line into /etc/hosts
music.163.com 127.0.0.1
Nginx conf file
server {
listen 80;
server_name music.163.com;
location / {
proxy_pass http://127.0.0.1:8123;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Accept-Encoding "";
}
}
Preview
Thanks
- This project is based on EraserKing's CloudMusicGear.
- Thanks for yanunon's API documents.
License
GPLv3