163-music-unlock is a reversed proxy for NetEase Music clients, which unlocks regional limitations, limited and paid songs.
网易云音乐客户端的反代,解除海外限制,并且可播放下架歌曲和付费歌曲(暂不能收藏)。
2016.5.21 已兼容全平台客户端的最新版本(OSX 1.4.4, IOS 3.5.0, Android 3.4.1, Windows 2.0.3)
2016.5.10 增加PAC代理(速度快多了,设置方法见下)
2016.5.6 OSX客户端请降回1.4.3客户端版本
2016.4.5 增加一台分流服务器
2016.4.4 迁移API服务器,加快版权歌曲的加载速度
目前测试可用的网易云音乐客户端:
- 安卓客户端
- IOS客户端
- OSX客户端
- Windows客户端
当前可用host列表如下,如果加载速度缓慢可尝试换一个服务器:
108.61.201.11 Vultr Tokyo
103.27.77.201 香港SLHK
Use PAC configuration(Recommended. Much faster.):
http://119.29.154.223:8085/neteasecloudmusic.pac
Or you can just modify your hosts
settings as follows.
On your device, add a custom DNS rule to the hosts
file:
103.27.77.201 music.163.com
This can also be done in many ways. On a non-jailbroken IOS device, it's recommended
to use Surge
to create configuration with custom DNS maps.
放出来的代码是3月底的版本,早就不可用了,不要尝试部署了。
树大招风,闷声发大财。真正的代码不会开源。
- 安装Python依赖
# pip install flask requests
-
编译安装nginx,需要添加 ngx_http_substitutions_filter_module 模块
-
将
server/nginx_conf.conf
复制到nginx配置目录中,并应用该配置文件 -
直接运行
python server/runapi.py
即可运行开发服务器 -
建议在生产环境中使用简单的
gunicorn
容器提高性能:
首先安装gunicorn:
# pip install gunicorn
写一个启动脚本(或者你可以写一个gunicorn配置文件):
#!/bin/sh
cd /root/163-music-unlock/server #替换为本项目下的server目录
/usr/local/bin/gunicorn -w 16 runapi:app -b 0.0.0.0:5001 --access-logfile /var/log/gunicorn.access.log --error-logfile /var/log/gunicorn.error.log --log-file /var/log/gunicorn.log
- 解决无法查看用户信息和用户歌单的问题(原因是这部分API使用https而非http,因此需要转发https请求):
首先在/etc/sysctl.conf
中,设置net.ipv4.ip_forward=1
,然后运行sysctl -p
然后在iptables
中增加转发规则:
# iptables -t nat -A PREROUTING -p tcp --dport 443 -j DNAT --to-destination 223.252.199.7:443
# iptables -t nat -A POSTROUTING -j MASQUERADE
或者,使用SNI Proxy根据域名转发,这样服务器上可以架设多个https服务。感谢 @Max-Sum 分享的SNI Proxy配置文件:
user daemon
pidfile /var/run/sniproxy.pid
error_log {
syslog daemon
priority notice
}
listen <YOUR_SERVER_IP>:443 {
proto tls
table https_hosts
access_log {
filename /var/log/sniproxy/https_access.log
priority notice
}
fallback 127.0.0.1:443
}
table https_hosts {
music.163.com 223.252.199.7:443
}