2024-06-27-【工程化】H5真机调试
小程序订阅消息(用户通过弹窗订阅)
次数限制:开通支付能力的小程序下发上限是 3kw/日,没开通的是 1kw/日
服务端 接入 小程序消息推送服务
获取到客户端真实 IP
# set_real_ip_from 0.0.0.0/0;
set_real_ip_from 127.0.0.1;
real_ip_header X-Forwarded-For;
real_ip_recursive on;
# 全局设置反向代理传递真实客户端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;
2024-06-27-【工程化】H5真机调试
https://zhangyingxuan.github.io/2024-06-27-【小程序】小程序消息推送/