-
关于 solo 博客一个纠结的小问题
2018-04-19 22:58- 看 Markdowns 这个类,里面有答案
- 应该是,这个不重要
- 最好还是直接用七牛 HTTPS 解决,不要折腾图片代理了
PS cc 域名很不好啊,不要省这点钱不值得。
-
IPFS 网络视频播放器
2018-04-19 10:14瞄了一眼代码 https://github.com/download13/ipfstube 大概原理是这样的:
播放部分
通过本地或者官方网关下载数据:
var sources = [ 'ipfs:', // Browser handler 'http://127.0.0.1:8080', // User's own IPFS daemon '', // Us 'https://gateway.ipfs.io', // Official gateway 'https://ipfs.pics' // Is this rude? ];
上传部分
通过 NGINX 反代本地 IPFS 网关 add 接口:
location = /upload { proxy_set_header Origin ""; proxy_set_header Referer ""; proxy_set_header X-Requested-With ""; proxy_pass http://ipfsnode:5001/api/v0/add; client_max_body_size 200M; }