云服务器设置反向代理树莓派的 motion?
http {
server {
listen 80;
location /motion {
proxy_pass http://树莓派IP:端口号;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location / {
}
}
}