使用nginx可以访问服务器视频 但是转发到webman后无法访问服务器视频
这里详细描述问题
这里粘代码
nginx配置
server {
listen 80;
server_name small.xychengf.cn;
root /www/wwwroot/chengfang/;
listen 443 ssl;
ssl_certificate /www/wwwroot/chengfang/public/public.pem;
ssl_certificate_key /www/wwwroot/chengfang/public/private.key;
# 其它ssl配置...
location /
{
proxy_pass http://127.0.0.1:8787;
proxy_http_version 1.1;
proxy_set_header X-Real-IP $remote_addr;
}
}
这里粘贴报错
这里粘贴截图
这里写具体的系统环境相关信息
nginx配置有问题吧,参考 https://www.workerman.net/doc/webman/others/nginx-proxy.html 这样配置
这样mp4走nginx,不用走webman。nginx处理静态文件,webman处理php业务,各司其职