准备

  1. 搭建完成宝塔面板
  2. 搭建完成 Emby(Docker 或之间搭建均可)

正式开始

  1. 在宝塔面板中新建站点
  2. 添加反向代理
    在站点设置里添加反向代理,代理名称随便填,目标 URL 填写自己要反代的域名或者 IP: 端口
  3. 修改反向代理配置文件
  1. #PROXY-START/
  2.  
  3. client_max_body_size 5000M;
  4. proxy_set_header X-Real-IP $remote_addr;
  5. proxy_set_header X-Forwarded-For '$proxy_add_x_forwarded_for';
  6. proxy_set_header X-Forwarded-Proto $scheme;
  7. proxy_set_header Sec-WebSocket-Extensions $http_sec_websocket_extensions;
  8. proxy_set_header Sec-WebSocket-Key $http_sec_websocket_key;
  9. proxy_set_header Sec-WebSocket-Version $http_sec_websocket_version;
  10. proxy_cache off;
  11. proxy_redirect off;
  12. proxy_buffering off;
  13. location / {
  14. proxy_pass http://ip:port;#修改为自己的IP:端口
  15. proxy_set_header X-Forwarded-For $remote_addr;
  16. proxy_ssl_verify off;
  17. proxy_http_version 1.1;
  18. proxy_set_header Host $http_host;
  19. proxy_set_header Upgrade $http_upgrade;
  20. proxy_set_header Connection "upgrade";
  21. proxy_read_timeout 86400;
  22. }
  23. location ~* .(gif|png|jpg|css|js|woff|woff2)$
  24. {
  25. proxy_pass http://ip:port;#修改为自己的IP:端口
  26. proxy_set_header Host $host;
  27. proxy_set_header X-Real-IP $remote_addr;
  28. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  29. proxy_set_header REMOTE-HOST $remote_addr;
  30. expires 12h;
  31. }

之后开启强制 HTTPS,在 CDN 的 SSL/TLS 中 设置加密模式为 完全

emby服务端配置,网络HTTPS端口,外部域名。不配置域名的话浏览器能播放,但在客户端无法播放。

因为客户端会解析服务器的真实IP,之后使用真实IP连接,不过CDN。

 

 

 

VIA:https://blog.yiyangv.com/index.php/archives/367/

参与评论

  • 阿鲁
  • QQ
  • 微博
  • 贴吧
  • 旧贴吧